-
Notifications
You must be signed in to change notification settings - Fork 9
/
install-config.sh
32 lines (27 loc) · 1.25 KB
/
install-config.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/bash
# This script, specific to vagrant, creates a user with full access and accessible admin rights
# Launch options
set -x # display every command
export DEBIAN_FRONTEND=noninteractive #Prevents script from accessing stdin
echo "## CONFIG SCRIPT ##"
## Creation of default user
CUSTOMUSER=bobby
CUSTOMPASS=bricodeur
# We create a new one instead of modifying the existing one.
adduser --quiet --disabled-password --shell /bin/bash --home /home/$CUSTOMUSER --gecos "" $CUSTOMUSER
usermod -aG sudo $CUSTOMUSER
echo "$CUSTOMUSER:$CUSTOMPASS" | sudo chpasswd
cp -pr /home/vagrant/.ssh /home/$CUSTOMUSER/
chown -R $CUSTOMUSER:$CUSTOMUSER /home/$CUSTOMUSER/
## Potential Shared Folder
# mkdir /home/$CUSTOMUSER/Shared
# chown -R $CUSTOMUSER:$CUSTOMUSER /home/$CUSTOMUSER/Shared
## Convenience (don't do this at home)
# Allow ssh password authentification
sed -i 's/PasswordAuthentication no/PasswordAuthentication yes/g' /etc/ssh/sshd_config
service ssh reload
# Remove password prompt for sudo
echo '%sudo ALL=(ALL:ALL) NOPASSWD:ALL' >> /etc/sudoers
echo "$CUSTOMUSER ALL=(ALL) NOPASSWD:ALL" | sudo tee /etc/sudoers.d/$CUSTOMUSER
# Launching the main installation script as user $CUSTOMUSER
DEBUG=true su -c "bash -x /vagrant/install-server.sh" $CUSTOMUSER