/etc/init/dotdee.conf is in dotdee 1.11-0ubuntu1.
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 | # dotdee - dotdee inotify daemon
#
# Update dotdee-managed files immediately on constituent modification
description "dotdee inotify daemon"
author "Dustin Kirkland <kirkland@ubuntu.com>"
start on filesystem or runlevel [2345]
stop on runlevel [!2345]
respawn
script
. /etc/default/dotdee
if [ "$INOTIFY" = "1" ]; then
exec iwatch -f /etc/dotdee.xml -p /var/run/dotdee.pid
fi
end script
|