echo to the right script

This commit is contained in:
Bob Mottram 2015-11-23 17:47:53 +00:00
parent 8c7929e4b0
commit e8f4133bc4
1 changed files with 3 additions and 4 deletions

View File

@ -215,16 +215,15 @@ if [ -f ~/.initial_setup ]; then
echo '' echo ''
EOF EOF
echo ' NEW_USER_PASSWORD="$(openssl rand -base64 12 | cut -c1-10)"' >> $rootdir/root/.bashrc echo ' NEW_USER_PASSWORD="$(openssl rand -base64 12 | cut -c1-10)"' >> $rootdir/home/$MY_USERNAME/.bashrc
echo ' echo "${NEW_USER_PASSWORD}" > ~/login.txt' >> $rootdir/root/.bashrc echo ' echo "${NEW_USER_PASSWORD}" > ~/login.txt' >> $rootdir/home/$MY_USERNAME/.bashrc
echo ' echo " $NEW_USER_PASSWORD"' >> $rootdir/root/.bashrc echo ' echo " $NEW_USER_PASSWORD"' >> $rootdir/home/$MY_USERNAME/.bashrc
cat >> $rootdir/home/$MY_USERNAME/.bashrc <<EOF cat >> $rootdir/home/$MY_USERNAME/.bashrc <<EOF
echo '' echo ''
echo 'Copy it into a password manager or write it down somewhere.' echo 'Copy it into a password manager or write it down somewhere.'
echo '' echo ''
read -n1 -r -p "Press any key to continue..." key read -n1 -r -p "Press any key to continue..." key
rm ~/.initial_setup rm ~/.initial_setup
sudo su sudo su
fi fi