relocate the files
[remote-debug.git] / add-user.sh
diff --git a/add-user.sh b/add-user.sh
deleted file mode 100755 (executable)
index aaff13f..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-#!/bin/bash
-
-# Add a new user named debug, with password suanzikeji for remote debug
-# the suanzi-support daemon will be running as this user
-# run : sudo ./add-user.sh
-
-USER="debug"
-PASS="suanzikeji"
-
-echo "Create $USER user"
-useradd -m "${USER}" || exit 1
-
-echo "set the password of $USER"
-echo -e "${PASS}\n${PASS}" | passwd "$USER"  || exit 1
-
-echo "Done"
-