/etc/default/oar-server is in oar-server 2.5.4-2+deb8u1.
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 | # Defaults for oar-server initscript
# sourced by /etc/init.d/oar-server
# Uncomment the following lines if you don't want oar-server to be automatically
# started at boot time
#OAR_SERVER_NO_START_STOP=1
# start/stop options check
if [ -n "$OAR_SERVER_NO_START_STOP" -a -z "$OAR_SERVER_FORCE_START_STOP" ]; then
echo "oar-server disabled from /etc/default/oar-server"
exit 0
fi
# Additional options that are passed to the Daemon.
DAEMON_OPTS=""
|