Last active
April 14, 2022 22:08
-
-
Save Ulexus/072d2120eebf1975de16e86cd9b5fc07 to your computer and use it in GitHub Desktop.
Asterisk systemd unit
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Unit] | |
Description=Asterisk PBX And Telephony Daemon | |
After=network.target | |
[Service] | |
User=asterisk | |
ExecStart=/usr/sbin/asterisk -f -C /etc/asterisk/asterisk.conf | |
ExecStop=/usr/sbin/asterisk -rx 'core stop now' | |
ExecReload=/usr/sbin/asterisk -rx 'core reload' | |
Restart=always | |
RestartSec=10s | |
TimeoutStartSec=30 | |
TimeoutStopSec=15 | |
[Install] | |
WantedBy=multi-user.target |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment