Use sudo instead of root
This commit is contained in:
parent
e9410c4f8f
commit
3f728a9c22
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -4,3 +4,4 @@ playbook.retry
|
|||
*.log
|
||||
.idea/
|
||||
venv/
|
||||
/ansible.cfg
|
||||
|
|
10
Makefile
10
Makefile
|
@ -1,4 +1,10 @@
|
|||
init: create_venv install_pre_commit install_ansible_galaxy_modules
|
||||
init: create_ansible_cfg create_venv install_pre_commit install_ansible_galaxy_modules
|
||||
|
||||
.ONESHELL:
|
||||
create_ansible_cfg:
|
||||
read -rp "Enter remote username: " REMOTE_USER
|
||||
cp ansible.cfg.sample ansible.cfg
|
||||
sed -i "s/REMOTE_USER/$$REMOTE_USER/g" ansible.cfg
|
||||
|
||||
create_venv:
|
||||
python3 -m venv venv
|
||||
|
@ -9,4 +15,4 @@ install_pre_commit:
|
|||
venv/bin/pre-commit install
|
||||
|
||||
install_ansible_galaxy_modules:
|
||||
venv/bin/ansible-galaxy collection install community.general
|
||||
venv/bin/ansible-galaxy collection install community.general
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
[defaults]
|
||||
remote_user = root
|
||||
remote_user = REMOTE_USER
|
||||
inventory = datacoop_hosts
|
Loading…
Reference in a new issue