26 lines
533 B
Plaintext
26 lines
533 B
Plaintext
#
|
|
# Linux systemd service file for the EPICS CA Repeater
|
|
#
|
|
# To install this file, as root:
|
|
# cp caRepeater.service /etc/systemd/system
|
|
# chmod 664 /etc/systemd/system/caRepeater.service
|
|
# systemctl daemon-reload
|
|
# systemctl enable caRepeater
|
|
# systemctl start caRepeater
|
|
#
|
|
# To check the status:
|
|
# systemctl status caRepeater
|
|
|
|
[Unit]
|
|
Description=EPICS CA Repeater
|
|
Requires=network.target
|
|
After=network.target
|
|
|
|
[Service]
|
|
ExecStart=@INSTALL_BIN@/caRepeater
|
|
Restart=always
|
|
User=daemon
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|