Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cellular Package change link to symlink #500

Merged
merged 1 commit into from
Mar 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion net/pfSense-pkg-cellular/Makefile
@@ -1,7 +1,7 @@
# $FreeBSD$

PORTNAME= pfSense-pkg-cellular
PORTVERSION= 1.2
PORTVERSION= 1.2.1
CATEGORIES= net
MASTER_SITES= # empty
DISTFILES= # empty
Expand Down
4 changes: 2 additions & 2 deletions net/pfSense-pkg-cellular/files/usr/local/bin/cellular_dev.py
Expand Up @@ -87,11 +87,11 @@ def remove_link():

data_ug = path_ug + ".0"
if os.path.exists(data_ug):
os.link(data_ug, data_path)
os.symlink(data_ug, data_path)

mgmt_ug = path_ug + ".2"
if os.path.exists(mgmt_ug):
os.link(mgmt_ug, mgmt_path)
os.symlink(mgmt_ug, mgmt_path)

elif args.remove:

Expand Down