icecast.initd 431 B

123456789101112131415161718192021
  1. #!/sbin/openrc-run
  2. # Copyright 1999-2016 Gentoo Foundation
  3. # Distributed under the terms of the GNU General Public License v2
  4. extra_started_commands="reload"
  5. pidfile="/var/run/icecast.pid"
  6. command="/usr/bin/icecast"
  7. command_args="-c /etc/icecast2/icecast.xml"
  8. command_background="true"
  9. depend() {
  10. need net
  11. }
  12. reload() {
  13. ebegin "Reloading Icecast2 configuration"
  14. start-stop-daemon --signal HUP --pidfile ${pidfile}
  15. eend $?
  16. }