/etc/init/swift-account-replicator.conf is in swift-account 2.7.0-0ubuntu2.
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 | # swift-account-replicator - SWIFT Account Replicator
#
# The swift account replicator.
description "SWIFT Account Replicator"
author "Marc Cluet <marc.cluet@ubuntu.com>"
start on runlevel [2345]
stop on runlevel [016]
pre-start script
if [ -f "/etc/swift/account-server.conf" ]; then
exec /usr/bin/swift-init account-replicator start
else
exit 1
fi
end script
post-stop exec /usr/bin/swift-init account-replicator stop
|