Initialize git repo
This commit is contained in:
parent
6d07ad5781
commit
9335f091ce
|
|
@ -1,3 +1,12 @@
|
|||
# arch-obs-setup
|
||||
|
||||
Ansible-Managed Arch Linux OBS Setup
|
||||
|
||||
# License
|
||||
|
||||
[AGPLv3 or Later](LICENSE)
|
||||
|
||||
# Author
|
||||
|
||||
* L3D <l3d@c3woc.de>
|
||||
* CWTV
|
||||
|
|
|
|||
|
|
@ -0,0 +1,30 @@
|
|||
[defaults]
|
||||
inventory = ./hosts.ini
|
||||
remote_user = ansible
|
||||
retry_files_enabled = false
|
||||
nocows = true
|
||||
|
||||
log_path = $HOME/.ansible/ansible.log
|
||||
|
||||
forks = 23
|
||||
gathering = smart
|
||||
fact_caching = jsonfile
|
||||
fact_caching_connection = $HOME/.ansible/facts
|
||||
|
||||
interpreter_python = /usr/bin/python3
|
||||
|
||||
[ssh_connection]
|
||||
control_path = %(directory)s/%%h-%%r-%%p
|
||||
ssh_args = -o StrictHostKeyChecking=accept-new -o ControlMaster=auto -o ControlPersist=600s
|
||||
pipelining = true
|
||||
retries = 10
|
||||
|
||||
[privilege_escalation]
|
||||
become_method: community.general.sudosu
|
||||
become_user = root
|
||||
become_ask_pass = false
|
||||
|
||||
[passwordstore_lookup]
|
||||
backend = gopass
|
||||
lock = readwrite
|
||||
locktimeout = 45s
|
||||
Loading…
Reference in New Issue