Files
workstation-setup/README.md

20 lines
345 B
Markdown
Raw Permalink Normal View History

2025-03-31 12:34:39 +04:00
# localhost_ansible
## Dep
```bash
python3 -m venv .venv
source .venv/bin/activate
pip install ansible
```
## Шифрование файлов
```bash
2025-05-16 12:54:57 +03:00
ansible-vault encrypt <file_name>.txt --vault-password-file .vault_password.txt
2025-03-31 12:34:39 +04:00
```
## Запуск
```bash
2025-05-16 12:54:57 +03:00
ansible-playbook -K playbook.yml --vault-password-file .vault_password.txt
2025-03-31 12:34:39 +04:00
```