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