install.sh gelöscht
This commit is contained in:
parent
c3a0424c4d
commit
b783fb2225
37
install.sh
37
install.sh
@ -1,37 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
|
|
||||||
set -e
|
|
||||||
|
|
||||||
# on fresh install remove cdrom-repo and install sudo if not available
|
|
||||||
which sudo >/dev/null 2>&1 || su -c "sed -i '/cdrom/d' /etc/apt/sources.list ; apt update ; apt -y install sudo"
|
|
||||||
# add user to sudo group it not
|
|
||||||
if ! id | grep -q '(sudo)'
|
|
||||||
then
|
|
||||||
su -c "/usr/sbin/usermod -a -G sudo ${USER}"
|
|
||||||
# use sudo group and restart this script
|
|
||||||
exec sg sudo -c "bash $0"
|
|
||||||
exit $?
|
|
||||||
fi
|
|
||||||
|
|
||||||
|
|
||||||
sudo apt-get -y install ansible git
|
|
||||||
sudo ansible-galaxy collection install community.general
|
|
||||||
#sudo apt-get -y install python3-pip git
|
|
||||||
#sudo pip install ansible
|
|
||||||
|
|
||||||
cd
|
|
||||||
rm -rf $(hostname -s)-git
|
|
||||||
mkdir $(hostname -s)-git
|
|
||||||
cd $(hostname -s)-git
|
|
||||||
|
|
||||||
|
|
||||||
for playbook in \
|
|
||||||
debian.ansible.basics \
|
|
||||||
debian.ansible.runchecks \
|
|
||||||
debian.ansible.autoupdate \
|
|
||||||
debian.ansible.dedyn.client
|
|
||||||
do
|
|
||||||
git clone https://gitea.ds9.dedyn.io/olli/${playbook}.git
|
|
||||||
[ -s /etc/dohardening ] || rm -f ${playbook}/hardening.yml
|
|
||||||
sudo ansible-playbook --connection=local --inventory $(hostname), --limit $(hostname) ${playbook}/*.yml
|
|
||||||
done
|
|
Loading…
Reference in New Issue
Block a user