computer-playbook/README.md

29 lines
759 B
Markdown
Raw Normal View History

2021-11-12 12:52:51 +01:00
# Server-Playbook
2020-12-24 14:27:31 +01:00
## Description
Ansible script to manage servers.
2020-12-31 13:21:56 +01:00
## roles
The system use the following role namings:
| role prefix | meaning|
|---|---|
2021-01-23 08:26:39 +01:00
|system-|general system roles which apply basic configurations|
2020-12-31 13:21:56 +01:00
|native-|applications which run native on the system|
|docker-|applications which run on docker containers on the system|
2020-12-24 14:27:31 +01:00
## Update
Follow the best [practices for inventories](https://docs.ansible.com/ansible/2.3/playbooks_best_practices.html) and execute ansible via:
2020-12-24 14:27:31 +01:00
``bash
ansible-playbook -i ~/your-inventories/inventorie/hosts site.yml
2020-12-24 14:27:31 +01:00
``
## Debug
### Cleanup docker
``bash
docker stop $(docker ps -aq); docker rm $(docker ps -aq); docker volume rm $(docker volume ls -q);
``
## see
- https://wiki.archlinux.org/index.php/Ansible