We don't need to mark the systems down. If there's something wrong with
them, we'll find it during teuthology tests.
I also forgot to unpause the queue in the event of a job failure so I've
added that too.
Signed-off-by: David Galloway <dgallowa@redhat.com>
# Set DHCP server back to FOG
for machine in $allhosts; do
ssh ubuntu@store01.front.sepia.ceph.com "sudo /usr/local/sbin/set-next-server.sh $machine fog"
- teuthology-lock --update --status down $machine
- teuthology-lock --update --desc "Failed to capture FOG image: ${BUILD_URL}" $machine
done
# Restart dhcpd (for some reason doing this every time we set the next-server in the for loop above, dhcpd would fail to start)
for host in $allhosts; do
teuthology-lock --unlock $host
done
+
+# Unpause the queue
+for type in $MACHINETYPES; do
+ teuthology-queue --pause 0 --machine_type $type
+done