From 325ef6d45d30a85ac7afd2351d0c3b22de2fa7bd Mon Sep 17 00:00:00 2001 From: Radar231 Date: Fri, 28 Jan 2022 08:13:19 -0500 Subject: [PATCH] move deb testing vms to deb_testing group --- del_inventory.yml | 30 ++++++++++++++++++++++++++---- do_updates.sh | 2 +- 2 files changed, 27 insertions(+), 5 deletions(-) diff --git a/del_inventory.yml b/del_inventory.yml index b8a20b0..6d0145e 100644 --- a/del_inventory.yml +++ b/del_inventory.yml @@ -32,16 +32,18 @@ all: ansible_host: 192.168.7.33 npm: ansible_host: 192.168.7.40 + cat: + ansible_host: 192.168.7.101 + octoprint: + ansible_host: 192.168.7.104 + deb_testing: + hosts: deb-bullseye: ansible_host: 192.168.7.91 deb-testing: ansible_host: 192.168.7.92 deb-sid: ansible_host: 192.168.7.93 - cat: - ansible_host: 192.168.7.101 - octoprint: - ansible_host: 192.168.7.104 remote: hosts: jmc: @@ -143,5 +145,25 @@ all: ansible_host: 192.168.7.56 node-7-rpi4: ansible_host: 192.168.7.57 + lxd: + hosts: + reddwarf: + ansible_host: 192.168.7.10 + starbug: + ansible_host: 192.168.7.15 + holly: + ansible_host: 192.168.7.24 + lister: + ansible_host: 192.168.7.25 + hollister: + ansible_host: 192.168.7.26 + laptop_servers: + hosts: + holly: + ansible_host: 192.168.7.24 + lister: + ansible_host: 192.168.7.25 + hollister: + ansible_host: 192.168.7.26 # EOF diff --git a/do_updates.sh b/do_updates.sh index 22e68b1..4014b9e 100755 --- a/do_updates.sh +++ b/do_updates.sh @@ -10,5 +10,5 @@ logDir="$HOME/logs" mkdir -p $logDir -ansible-playbook -i del_inventory.yml --limit local,remote,k8s updates.yml 2>&1 | tee -a ${logDir}/updates_${curDate}.log +ansible-playbook -i del_inventory.yml --limit local,remote,k8s,deb_testing updates.yml 2>&1 | tee -a ${logDir}/updates_${curDate}.log