summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/net-profiles4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net-profiles b/src/net-profiles
index a60d30b..3827c54 100644
--- a/src/net-profiles
+++ b/src/net-profiles
@@ -27,7 +27,7 @@ case "$1" in
exit 0
fi
elif [[ -n "$NET" ]]; then
- if /usr/bin/netcfg2 -c "$NET"; then
+ if /usr/bin/netcfg2 check-iface "$NET"; then
echo "$NET" > "$STATE_DIR/net-profiles" # JP: user may want to disconnect profile by calling net-profiles stop
add_daemon net-profiles
exit 0
@@ -46,7 +46,7 @@ case "$1" in
;;
*) # Either interface or profile
if [[ "$network" = "${network#!}" ]]; then # otherwise profile
- if /usr/bin/netcfg2 -c "$network"; then
+ if /usr/bin/netcfg2 check-iface "$network"; then
echo "$network" > "$STATE_DIR/net-profiles" # JP: user may want to disconnect profile by calling net-profiles stop
add_daemon net-profiles
exit 0