/etc/init/xe-daemon.conf is in xe-guest-utilities 6.2.0-1120+dsf1-0ubuntu3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | # xe-daemon - run xe-daemon for Xen
#
# This is an upstart re-write of the xe-daemon agent.
description xe-daemon
start on local-filesystems
stop on runlevel [016]
console output
respawn
env XE_LINUX_CACHE="/var/cache/xe-linux-distribution"
pre-start script
if [ ! -e /sys/hypervisor/type ]; then
exit 0;
fi
hypervisor="$(cat /sys/hypervisor/type)"
if [ "${hypervisor}" != "xen" ]; then
exit 0;
fi
if [ ! -e /proc/xen/xenbus ]; then
mount -t xenfs none /proc/xen
fi
/usr/sbin/xe-linux-distribution ${XE_LINUX_CACHE}
logger -t xe-daemon "Populated ${XE_LINUX_CACHE}"
end script
exec /usr/sbin/xe-daemon
|