summaryrefslogtreecommitdiffstats
path: root/init_node
diff options
context:
space:
mode:
Diffstat (limited to 'init_node')
-rwxr-xr-xinit_node11
1 files changed, 11 insertions, 0 deletions
diff --git a/init_node b/init_node
index 89a1fbb6..a96cdbb9 100755
--- a/init_node
+++ b/init_node
@@ -5,6 +5,17 @@
# released under the GPLv=2
#
# initial setup for new build nodes
+# - this script assumes that the user running it has unlimited sudo powers…
+
+# let's check our assumptions first…
+if [ $(sudo id -u) -ne 0 ] ; then
+ echo we need sudo… exiting.
+ exit 1
+elif [ $(id -u) -eq 0 ] ; then
+ echo please dont run this as root… exiting.
+ exit 1
+fi
+
START=$(date +'%s')
GIT_REPO="git://anonscm.debian.org/qa/jenkins.debian.net.git"