2011-02-25 16:07:52 +01:00
|
|
|
# Upstart jobs for libvirtd.
|
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
|
|
|
|
|
|
|
with pkgs.lib;
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
let
|
2011-02-25 16:07:52 +01:00
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
cfg = config.virtualisation.libvirtd;
|
2011-02-25 16:07:52 +01:00
|
|
|
|
|
|
|
in
|
|
|
|
|
|
|
|
{
|
|
|
|
###### interface
|
|
|
|
|
|
|
|
options = {
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
virtualisation.libvirtd.enable =
|
2011-02-25 16:07:52 +01:00
|
|
|
mkOption {
|
|
|
|
default = false;
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
This option enables libvirtd, a daemon that manages
|
|
|
|
virtual machines. You can interact with the daemon
|
|
|
|
(e.g. to start or stop VMs) using the
|
|
|
|
<command>virsh</command> command line tool, among others.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
virtualisation.libvirtd.enableKVM =
|
2011-02-25 16:07:52 +01:00
|
|
|
mkOption {
|
|
|
|
default = true;
|
|
|
|
description =
|
|
|
|
''
|
|
|
|
This option enables support for QEMU/KVM in libvirtd.
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
###### implementation
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
environment.systemPackages =
|
2011-03-16 13:31:06 +01:00
|
|
|
[ pkgs.libvirt ]
|
|
|
|
++ optional cfg.enableKVM pkgs.qemu_kvm;
|
2011-02-25 16:07:52 +01:00
|
|
|
|
2011-03-15 11:52:44 +01:00
|
|
|
boot.kernelModules = [ "tun" ];
|
|
|
|
|
2013-01-16 12:33:18 +01:00
|
|
|
systemd.services.libvirtd =
|
2012-10-26 16:21:35 +02:00
|
|
|
{ description = "Libvirt Virtual Machine Management Daemon";
|
2011-02-25 16:07:52 +01:00
|
|
|
|
2012-10-26 16:21:35 +02:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
after = [ "systemd-udev-settle.service" ];
|
2011-02-25 16:07:52 +01:00
|
|
|
|
|
|
|
path =
|
2011-03-15 10:42:49 +01:00
|
|
|
[ pkgs.bridge_utils pkgs.dmidecode pkgs.dnsmasq
|
2011-03-31 17:24:13 +02:00
|
|
|
pkgs.ebtables
|
2011-02-25 16:07:52 +01:00
|
|
|
] ++ optional cfg.enableKVM pkgs.qemu_kvm;
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
preStart =
|
2011-03-15 10:42:49 +01:00
|
|
|
''
|
|
|
|
mkdir -p /var/log/libvirt/qemu -m 755
|
2011-03-16 14:52:52 +01:00
|
|
|
rm -f /var/run/libvirtd.pid
|
2011-04-01 00:10:26 +02:00
|
|
|
|
|
|
|
mkdir -p /var/lib/libvirt -m 700
|
|
|
|
mkdir -p /var/lib/libvirt/dnsmasq -m 700
|
|
|
|
|
|
|
|
# Libvirt unfortunately writes mutable state (such as
|
|
|
|
# runtime changes to VM, network or filter configurations)
|
|
|
|
# to /etc. So we can't use environment.etc to make the
|
|
|
|
# default network and filter definitions available, since
|
|
|
|
# libvirt will then modify the originals in the Nix store.
|
|
|
|
# So here we copy them instead. Ugly.
|
|
|
|
for i in $(cd ${pkgs.libvirt}/etc && echo \
|
|
|
|
libvirt/qemu/networks/*.xml libvirt/qemu/networks/autostart/*.xml \
|
|
|
|
libvirt/nwfilter/*.xml );
|
|
|
|
do
|
|
|
|
mkdir -p /etc/$(dirname $i) -m 755
|
|
|
|
cp -fpd ${pkgs.libvirt}/etc/$i /etc/$i
|
|
|
|
done
|
|
|
|
''; # */
|
2011-03-15 10:42:49 +01:00
|
|
|
|
2012-10-26 16:21:35 +02:00
|
|
|
serviceConfig.ExecStart = "@${pkgs.libvirt}/sbin/libvirtd libvirtd --daemon --verbose";
|
|
|
|
serviceConfig.Type = "forking";
|
|
|
|
serviceConfig.KillMode = "process"; # when stopping, leave the VMs alone
|
2011-02-25 16:07:52 +01:00
|
|
|
|
2011-04-01 20:08:53 +02:00
|
|
|
# Wait until libvirtd is ready to accept requests.
|
|
|
|
postStart =
|
|
|
|
''
|
|
|
|
for ((i = 0; i < 60; i++)); do
|
|
|
|
if ${pkgs.libvirt}/bin/virsh list > /dev/null; then exit 0; fi
|
|
|
|
sleep 1
|
|
|
|
done
|
|
|
|
exit 1 # !!! seems to be ignored
|
|
|
|
'';
|
2011-02-25 16:07:52 +01:00
|
|
|
};
|
|
|
|
|
2012-04-19 17:12:55 +02:00
|
|
|
jobs."libvirt-guests" =
|
2012-10-26 16:21:35 +02:00
|
|
|
{ description = "Libvirt Virtual Machines";
|
2011-02-25 16:56:49 +01:00
|
|
|
|
2012-10-26 16:21:35 +02:00
|
|
|
wantedBy = [ "multi-user.target" ];
|
|
|
|
wants = [ "libvirtd.service" ];
|
|
|
|
after = [ "libvirtd.service" ];
|
2011-02-25 16:56:49 +01:00
|
|
|
|
|
|
|
# We want to suspend VMs only on shutdown, but Upstart is broken.
|
2012-10-26 16:21:35 +02:00
|
|
|
#stopOn = "";
|
2012-04-19 17:12:55 +02:00
|
|
|
|
|
|
|
restartIfChanged = false;
|
2011-02-25 16:56:49 +01:00
|
|
|
|
|
|
|
path = [ pkgs.gettext pkgs.libvirt pkgs.gawk ];
|
|
|
|
|
2011-09-14 20:20:50 +02:00
|
|
|
preStart =
|
2011-02-25 16:56:49 +01:00
|
|
|
''
|
|
|
|
mkdir -p /var/lock/subsys -m 755
|
2011-04-01 20:08:53 +02:00
|
|
|
${pkgs.libvirt}/etc/rc.d/init.d/libvirt-guests start || true
|
2011-02-25 16:56:49 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
postStop = "${pkgs.libvirt}/etc/rc.d/init.d/libvirt-guests stop";
|
2011-04-01 20:08:53 +02:00
|
|
|
|
2012-10-26 16:21:35 +02:00
|
|
|
serviceConfig.Type = "oneshot";
|
|
|
|
serviceConfig.RemainAfterExit = true;
|
2012-04-19 17:12:55 +02:00
|
|
|
};
|
|
|
|
|
2011-02-25 16:07:52 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|