summaryrefslogtreecommitdiffstats
path: root/scripts/netcfg
diff options
context:
space:
mode:
authorJouke Witteveen <j.witteveen@gmail.com>2012-02-27 17:11:21 +0100
committerJouke Witteveen <j.witteveen@gmail.com>2012-02-27 17:11:21 +0100
commit8d1c5e8ec6b637015e84bbb154ece9065c59f1c5 (patch)
tree573516ed0a5a8af5ba0a50b706af63d0ae4eef5d /scripts/netcfg
parentd31febe0879d156c05dc47bb8ecbdf2cfee92238 (diff)
downloadnetctl-8d1c5e8ec6b637015e84bbb154ece9065c59f1c5.tar.gz
netctl-8d1c5e8ec6b637015e84bbb154ece9065c59f1c5.tar.xz
Reconnect syntax for interfaces (FS#28196)
It is now possible to reconnect based on the name of the interface.
Diffstat (limited to 'scripts/netcfg')
-rwxr-xr-xscripts/netcfg3
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/netcfg b/scripts/netcfg
index 9d341e5..1f734c7 100755
--- a/scripts/netcfg
+++ b/scripts/netcfg
@@ -24,6 +24,7 @@ usage()
echo "-i, iface-down Take down profile active on specified interface"
echo "-l, list List all available profiles"
echo "-r, reconnect Disconnect and reconnect specified profile"
+ echo "-R, iface-recon Reconnect profile active on specified interface"
echo "-u, up Start specified profile"
echo "-v, version Output version information and exit"
echo " all-resume Resume previously suspended profiles and reconnect them"
@@ -80,6 +81,8 @@ case "$1" in
-r|reconnect)
profile_down "$2"
profile_up "$2";;
+ -R|iface-recont)
+ interface_reconnect "$2";;
all-resume)
all_resume;;
all-suspend)