16 lines
298 B
Bash
Executable File
16 lines
298 B
Bash
Executable File
#!/bin/bash
|
|
export ANSIBLE_HOST_KEY_CHECKING=False
|
|
|
|
# Replace for an inventory
|
|
#IP="192.168.1.2"
|
|
#IP="192.168.1.50,192.168.1.51"
|
|
|
|
ansible-playbook -i inventory.yaml Initial_Setup/armbian_initial_setup.yaml && sleep 25 # Wait for reboot
|
|
|
|
ansible-playbook -i inventory.yaml ksetup/playbook.yaml
|
|
|
|
|
|
|
|
|
|
|