Initial commit

This commit is contained in:
2019-06-28 02:28:50 +02:00
commit 21fcd86115
107 changed files with 8346 additions and 0 deletions

21
DOC/README.ad-hoc Normal file
View File

@ -0,0 +1,21 @@
# ----
# Execute 'ad-hoc' command through ansible with extended privileges
# ---
ansibl all --become --become-method sudo --ask-become-pass -a 'whoami'
ansible all --become --become-method sudo --ask-become-pass -a 'uptime'
# - Note:
# - alternatively, you can out the following entrie into your 'ansible-cfg' file:
# -
# - [privilege_escalation]
# - become=True
# - become_method=sudo
# - become_ask_pass=True
# -
# - Now you can omit the the 'becom' flags:
# -
ansible all -a 'whoami'
ansible all -a 'uptime'