linux-mint/mint.sh

13 lines
321 B
Bash
Raw Normal View History

2022-07-06 12:29:48 +02:00
#!/bin/bash
apt-get update
apt-get -y dist-upgrade
2022-07-06 15:16:44 +02:00
apt-get -y install python3-pip git
pip install ansible
2022-07-06 12:29:48 +02:00
2022-07-06 12:43:49 +02:00
git clone https://gitea.ds9.dedyn.io/olli/debian.ansible.basics.git
2022-07-06 16:03:03 +02:00
ansible-playbook --connection=local --inventory $(hostname), --limit $(hostname) debian.ansible.basics/basics.yml
2022-07-06 15:28:24 +02:00
rm -rf debian.ansible.basics