5 lines
176 B
Bash
Executable file
5 lines
176 B
Bash
Executable file
#!/bin/bash
|
|
|
|
dpkg -l | grep python3-pip >/dev/null || apt -y install python3 python3-pip
|
|
which ansible >/dev/null || pip3 install ansible --system
|
|
ansible-playbook install.yml
|