13,009
回編集
510行目: | 510行目: | ||
# libvirtフックスクリプト | # libvirtフックスクリプト | ||
#! | #!/bin/bash | ||
OBJECT="$1" | OBJECT="$1" | ||
517行目: | 517行目: | ||
EXTRA_ARG="$4" | EXTRA_ARG="$4" | ||
case | case "$OPERATION" in | ||
"prepare") | |||
systemctl start libvirt-nosleep@"$OBJECT" | |||
;; | |||
"release") | |||
systemctl stop libvirt-nosleep@"$OBJECT" | |||
;; | |||
esac | esac | ||
</syntaxhighlight> | </syntaxhighlight> | ||
535行目: | 535行目: | ||
[Service] | [Service] | ||
Type=simple ExecStart=/usr/bin/systemd-inhibit --what=sleep --why="Libvirt domain \"%i\" is running" --who=%U --mode=block sleep infinity | Type=simple | ||
ExecStart=/usr/bin/systemd-inhibit --what=sleep --why="Libvirt domain \"%i\" is running" --who=%U --mode=block sleep infinity | |||
<br><br> | <br><br> | ||