eole-one-master/posttemplate/10-libvirt-guests

10 lines
166 B
Bash

#!/bin/sh
echo "Disable and mask libvirt-guests service"
for action in stop disable mask
do
systemctl ${action} libvirt-guests.service 2> /dev/null
done
exit 0