v.1.6.0 debian hosts
This commit is contained in:
@@ -5,8 +5,8 @@
|
||||
### !!!
|
||||
- name: Manage Docker Compose services
|
||||
hosts: paperless, mongodb, gitea,
|
||||
newt-pangolin, jenkins,
|
||||
ionos-ubuntu-01, jellyfin
|
||||
newt-debian, jenkins,
|
||||
ionos-debian-01, jellyfin
|
||||
# hosts: paperless, wiki
|
||||
become: true
|
||||
vars:
|
||||
@@ -15,9 +15,9 @@
|
||||
paperless: "/home/admin"
|
||||
mongodb: "/home/admin/mongodb"
|
||||
gitea: "/home/admin"
|
||||
newt-pangolin: "/home/admin/newt"
|
||||
newt-debian: "/home/admin/newt"
|
||||
jenkins: "/home/admin/jenkins"
|
||||
ionos-ubuntu-01: "/root"
|
||||
ionos-debian-01: "/root"
|
||||
jellyfin: "/home/admin/jellyfin"
|
||||
force_pull: false
|
||||
force_recreate: false
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
### keine Rechte fuer User ansible
|
||||
- name: Manage Docker Compose services
|
||||
hosts: paperless, mongodb, gitea,
|
||||
newt-pangolin, jenkins, ionos-ubuntu-01, jellyfin
|
||||
newt-debian, jenkins, ionos-debian-01, jellyfin
|
||||
# hosts: wiki !!! TOOK WIKI OUT !!!
|
||||
become: true
|
||||
vars:
|
||||
@@ -11,9 +11,9 @@
|
||||
paperless: "/home/admin"
|
||||
mongodb: "/home/admin/mongodb"
|
||||
gitea: "/home/admin"
|
||||
newt-pangolin: "/home/admin/newt"
|
||||
newt-debian: "/home/admin/newt"
|
||||
jenkins: "/home/admin/jenkins"
|
||||
ionos-ubuntu-01: "/root"
|
||||
ionos-debian-01: "/root/pangolin"
|
||||
jellyfin: "/home/admin/jellyfin"
|
||||
force_pull: false
|
||||
force_recreate: false
|
||||
@@ -44,6 +44,7 @@
|
||||
- name: Docker prune
|
||||
community.docker.docker_prune:
|
||||
containers: true
|
||||
|
||||
images: true
|
||||
# networks: true
|
||||
# volumes: true
|
||||
|
||||
@@ -1,5 +1,6 @@
|
||||
[lxc]
|
||||
lxc-thin-base-docker
|
||||
debian-base
|
||||
ubuntu-base
|
||||
j-agent-01
|
||||
j-agent-02
|
||||
j-agent-03
|
||||
@@ -9,7 +10,7 @@ docker-registry
|
||||
jenkins
|
||||
gitea
|
||||
pihole
|
||||
newt-pangolin
|
||||
newt-debian
|
||||
#wiki
|
||||
paperless
|
||||
jellyfin
|
||||
@@ -25,7 +26,7 @@ vm-ubuntu-01
|
||||
#homeassistant
|
||||
|
||||
[vserver]
|
||||
ionos-ubuntu-01
|
||||
ionos-debian-01
|
||||
|
||||
[homelab]
|
||||
zeus
|
||||
|
||||
11
simple-df.yml
Normal file
11
simple-df.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
---
|
||||
- name: Simple Disk Usage Check
|
||||
hosts: all
|
||||
tasks:
|
||||
- name: Run df -h command
|
||||
shell: df -hT | grep '^/dev/'
|
||||
register: result
|
||||
|
||||
- name: Show output
|
||||
debug:
|
||||
var: result.stdout_lines
|
||||
Reference in New Issue
Block a user