14 lines
200 B
Bash
14 lines
200 B
Bash
#!/bin/bash
|
|
sudo apt update
|
|
|
|
sudo apt install ansible
|
|
|
|
# Create the ansible log file
|
|
sudo touch /var/log/ansible.log
|
|
|
|
# Provide permissions for ansible log file
|
|
sudo chmod 666 /var/log/ansible.log
|
|
|
|
|
|
|