/etc/init/radosgw-agent.conf is in radosgw-agent 1.2.7-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 | # vim: set ft=upstart ts=2 et:
description "RADOS Gateway Sync Agent"
author "James Page <james.page@ubuntu.com>"
start on runlevel [2345]
stop on runlevel [!2345]
respawn
script
ENABLED="no"
if [ -f /etc/default/radosgw-agent ]; then
. /etc/default/radosgw-agent
fi
if [ "x$ENABLED" = "xyes" ]; then
exec /usr/bin/radosgw-agent -c /etc/ceph/radosgw-sync.conf \
--log-file /var/log/radosgw/radosgw-agent.log
fi
end script
|