mirror of
https://github.com/DO1JLR/ansible_linux_desktop_setup.git
synced 2024-09-14 19:54:51 +02:00
Init ansible
This commit is contained in:
parent
fbb370e1f3
commit
29fb1f4aee
3 changed files with 34 additions and 2 deletions
22
README.md
22
README.md
|
@ -1,2 +1,20 @@
|
|||
# ansible_thinkpad_setup
|
||||
My Ansible Setup for my Laptop
|
||||
Ansible Thinkpad Setup
|
||||
==========================
|
||||
My Ansible Setup for my Lenovo Thinkpad.
|
||||
|
||||
What is this playbook good for:
|
||||
--------------------------------
|
||||
+ Install common usefull base packages
|
||||
+
|
||||
|
||||
Install instructions:
|
||||
-----------------------
|
||||
```bash
|
||||
# Clone Git
|
||||
git clone https://github.com/DO1JLR/ansible_thinkpad_setup.git ansible_thinkpad_setup
|
||||
cd ansible_thinkpad_setup
|
||||
|
||||
# Download needed submodules
|
||||
git submodule update --init --recursive
|
||||
```
|
||||
|
||||
|
|
12
ansible.cfg
Normal file
12
ansible.cfg
Normal file
|
@ -0,0 +1,12 @@
|
|||
[defaults]
|
||||
inventory = ./ansible/hosts
|
||||
retry_files_enabled = False
|
||||
nocows = True
|
||||
transport = local
|
||||
|
||||
[privilege_escalation]
|
||||
become=Yes
|
||||
become_method=sudo
|
||||
become_user=root
|
||||
become_ask_pass=False
|
||||
|
2
ansible/hosts
Normal file
2
ansible/hosts
Normal file
|
@ -0,0 +1,2 @@
|
|||
[thinkpad]
|
||||
t460p ansible_host="localhost" ansible_connection=local
|
Loading…
Reference in a new issue