diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2017-08-01 01:52:09 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2017-08-01 01:52:09 +0200 |
commit | e2869cfe4215cc27f2c04ebf8cd26ee1abbd36dc (patch) | |
tree | 0daeb2aa1daeb42edb016efa38f7485609a3f206 /netset | |
parent | 70ba9f13b3ac6f95269fcd78b16e4c50d476ec0b (diff) | |
download | bin-e2869cfe4215cc27f2c04ebf8cd26ee1abbd36dc.zip bin-e2869cfe4215cc27f2c04ebf8cd26ee1abbd36dc.tar.gz |
add netset
Diffstat (limited to 'netset')
-rwxr-xr-x | netset | 20 |
1 files changed, 20 insertions, 0 deletions
@@ -0,0 +1,20 @@ +#! /bin/bash + +NETCTL=$(which netctl) +if [ -z "$NETCTL" ] +then + echo "netctl not found" + exit 1 +fi +if [ $UID -ne 0 ] +then + echo "must be run as root" + exit 1 +fi +$NETCTL stop-all +PROFILES=$($NETCTL list) +select profile in $PROFILES +do + [ -z "$profile" ] && exit 0 + echo "starting profile $profile" && $NETCTL start $profile; break +done |