aboutsummaryrefslogtreecommitdiffstats
path: root/modules/planet/templates/deploy_new-planet.sh
diff options
context:
space:
mode:
Diffstat (limited to 'modules/planet/templates/deploy_new-planet.sh')
-rwxr-xr-xmodules/planet/templates/deploy_new-planet.sh26
1 files changed, 26 insertions, 0 deletions
diff --git a/modules/planet/templates/deploy_new-planet.sh b/modules/planet/templates/deploy_new-planet.sh
new file mode 100755
index 00000000..83bc88f5
--- /dev/null
+++ b/modules/planet/templates/deploy_new-planet.sh
@@ -0,0 +1,26 @@
+#!/bin/sh
+
+# Initialization
+PATH_TO_FILE=${PATH_TO_FILE:-/var/lib/planet}
+
+#Ask for new locale name if no parameter given
+echo -n "Locale name: "
+read locale
+
+# Display the answer and ask for confirmation
+echo -e -n "Do you confirm the entry: \"$locale\"? (y/n) "
+read answer
+if [ "$answer" == "y" ]
+then
+ FILE="$PATH_TO_FILE/$locale/"
+ if test -d $FILE
+ then
+ echo "Aborted, $FILE already exist."
+ exit 2
+ else
+ /bin/mkdir $FILE
+ fi
+else
+ echo "Aborted, please try again."
+ exit 2
+fi