16 lines
331 B
SYSTEMD
16 lines
331 B
SYSTEMD
|
|
# systemd service for managing all sqlpage on the system. This
|
||
|
|
# service is actually a systemd target, but we are using a service since
|
||
|
|
# targets cannot be reloaded.
|
||
|
|
|
||
|
|
[Unit]
|
||
|
|
Description=sqlpage global service
|
||
|
|
|
||
|
|
[Service]
|
||
|
|
Type=oneshot
|
||
|
|
ExecStart=/bin/true
|
||
|
|
ExecReload=/bin/true
|
||
|
|
RemainAfterExit=on
|
||
|
|
|
||
|
|
[Install]
|
||
|
|
WantedBy=multi-user.target
|