diff --git a/deploy.sh b/deploy.sh index a6502656eaf40639b73204098d7b44c5eee5adbb..aeddce1fed826323bc243264877062d85ecf57a6 100644 --- a/deploy.sh +++ b/deploy.sh @@ -28,7 +28,7 @@ fi USER_LOGIN=etudiant USER_PASSWORD=$( openssl rand -hex 12 ) -useradd -m -s /bin/bash -g users -G adm,dialout,cdrom,floppy,audio,dip,video,plugdev,netdev ${USER_LOGIN} +useradd -m -s /bin/bash -g users -G adm,docker,dialout,cdrom,floppy,audio,dip,video,plugdev,netdev ${USER_LOGIN} cp /etc/skel/.* /home/${USER_LOGIN}/ passwd ${USER_LOGIN} << EOF diff --git a/install.sh b/install.sh index 04bde1ff7996ae3bd2a181f892ffca2a9f679ea6..f75d5ec6c0063aabdf9e0e1672cfbea46656ccfa 100644 --- a/install.sh +++ b/install.sh @@ -4,20 +4,6 @@ # It is used to record a predefined VM-image of the appliance. # Otherwise executed first during a cloud deployement in IFB-Biosphere -# Install Ansible -export DEBIAN_FRONTEND=noninteractive -APT_OPT="" -if [ $(lsb_release -is) = "Debian" ]; then - apt-get install -y software-properties-common dirmngr - if [ $(lsb_release -cs) = "stretch" ]; then apt-add-repository "deb http://deb.debian.org/debian stretch-backports main"; fi - APT_OPT="-t $(lsb_release -cs)-backports --allow-unauthenticated" - apt-get -y --allow-unauthenticated dist-upgrade -elif [ $(lsb_release -cs) != "focal" ]; then - apt-add-repository -y ppa:ansible/ansible -fi -apt-get update -apt-get install $APT_OPT -y ansible - # Run app playbook ansible-playbook -c local -i 127.0.0.1, -b -e 'ansible_python_interpreter=/usr/bin/python3' ubuntu-shellinabox.yaml diff --git a/ubuntu-shellinabox.yaml b/ubuntu-shellinabox.yaml index f6548db625917cae908aefa5c4e1d046aae4574f..33bc95d16ccd6daff15eabd910e8b42c7d8b22c1 100644 --- a/ubuntu-shellinabox.yaml +++ b/ubuntu-shellinabox.yaml @@ -60,7 +60,6 @@ - name: Configure network shell: iptables -t filter -A INPUT -p tcp --dport 443 -j ACCEPT && iptables -t filter -A OUTPUT -p tcp --dport 443 -j ACCEPT && iptables-save -sudo systemctl restart shellinabox - name: Enable services systemd: