Index: bootstrapper/bootstrap.sh
===================================================================
--- bootstrapper/bootstrap.sh	(revision 204)
+++ bootstrapper/bootstrap.sh	(revision 229)
@@ -1,4 +1,4 @@
 #!/bin/bash
-VERSION=5
+VERSION=6
 
 if [ `id -u` -ne 0 ]; then
@@ -185,10 +185,27 @@
 setSteamLoginData() {
 	echo -e "Steam account data\n"
-	echo "Please enter your Steam login data for SteamCMD to get the 7dtd-server files:"
-	read -p "Steam username: " username
-	read -s -p "Steam password: " password
-	sed -i "s/export STEAM_USER=/export STEAM_USER=$username/" /etc/7dtd.conf
-	sed -i "s/export STEAM_PASS=/export STEAM_PASS=$password/" /etc/7dtd.conf
-	echo -e "\n=============================================================\n\n"
+	echo -e "Steam account login data is required for SteamCMD to get the 7dtd-server files.\n"
+	echo -e "Store account login data in /etc/7dtd.conf which will be only readable by root?"
+	echo -e "If you select to NOT store the data you will have to enter it each time you want"
+	echo -e "to update the server files.\n"
+	while : ; do
+		local STOREDATA
+		read -p "Store data in /etc/7dtd.conf? (yn) " STOREDATA
+		case $STOREDATA in
+			y)
+				read -p "Steam username: " username
+				read -s -p "Steam password: " password
+				sed -i "s/export STEAM_USER=/export STEAM_USER=$username/" /etc/7dtd.conf
+				sed -i "s/export STEAM_PASS=/export STEAM_PASS=$password/" /etc/7dtd.conf
+				echo -e "\n=============================================================\n\n"
+				break
+				;;
+			n)
+				break
+				;;
+			*)
+				echo "Wrong input"
+		esac
+	done
 }
 
