/lib/systemd/system/glance-api.service is in glance-api 2:13.0.0-4.
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 20 21 22 | [Unit]
Description=OpenStack Image Service API
After=postgresql.service mysql.service keystone.service ntp.service rabbitmq-server.service
[Service]
User=glance
Group=glance
Type=simple
WorkingDirectory=/var/lib/glance
PermissionsStartOnly=true
ExecStartPre=/bin/mkdir -p /var/lock/glance /var/log/glance /var/lib/glance
ExecStartPre=/bin/chown glance:glance /var/lock/glance /var/lib/glance
ExecStartPre=/bin/chown glance:adm /var/log/glance
ExecStart=/etc/init.d/glance-api systemd-start
Restart=on-failure
LimitNOFILE=65535
TimeoutStopSec=65
[Install]
WantedBy=multi-user.target
|