/etc/init/pollen.conf is in pollen 4.21-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 19 | # pollen - Entropy-as-a-Service
description "Entropy-as-a-Service"
author "Dustin Kirkland <dustin.kirkland@gmail.com>"
start on runlevel [2345]
stop on runlevel [!2345]
setuid pollen
respawn
respawn limit 10 5
script
. /etc/default/pollen
# Ensure our device exists, and is a character device, before starting our server
if [ -c "$DEVICE" ]; then
exec pollen -http-port=$HTTP_PORT -https-port=$HTTPS_PORT -device=$DEVICE -bytes=$BYTES -cert=$CERT -key=$KEY
fi
end script
|