Improve venv
This commit is contained in:
parent
f8ce5e3255
commit
68a9c1a60a
|
|
@ -22,6 +22,7 @@ tags
|
||||||
# ---> Ansible
|
# ---> Ansible
|
||||||
*.retry
|
*.retry
|
||||||
*.ansible/
|
*.ansible/
|
||||||
|
*ansible/
|
||||||
|
|
||||||
# ---> macOS
|
# ---> macOS
|
||||||
# General
|
# General
|
||||||
|
|
|
||||||
|
|
@ -16,6 +16,14 @@ git config submodule.recurse true
|
||||||
|
|
||||||
Git submodule werden hier zum Beispiel verwendet und ansible rollen und collections zu integrieren.
|
Git submodule werden hier zum Beispiel verwendet und ansible rollen und collections zu integrieren.
|
||||||
|
|
||||||
|
## Python Enviroment
|
||||||
|
|
||||||
|
```bash
|
||||||
|
python -m venv .ansible
|
||||||
|
source .ansible/bin/activate
|
||||||
|
pip install --upgrade -r requirements.txt
|
||||||
|
```
|
||||||
|
|
||||||
## Ansible
|
## Ansible
|
||||||
|
|
||||||
Das **inventory** des ansible findet sich in der ``hosts.ini``. Um das Setup für andere hosts anzuwenden, ist das auf jeden Fall ein Blick wert.
|
Das **inventory** des ansible findet sich in der ``hosts.ini``. Um das Setup für andere hosts anzuwenden, ist das auf jeden Fall ein Blick wert.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue