summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xnetset20
1 files changed, 20 insertions, 0 deletions
diff --git a/netset b/netset
new file mode 100755
index 0000000..b1627c2
--- /dev/null
+++ b/netset
@@ -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