Rename python apps entrypoints

BREAKING: Remove old entrypoints using
sudo rm -f \
  /usr/{bin,local/bin}/airtime-liquidsoap \
  /usr/{bin,local/bin}/airtime-playout \
  /usr/{bin,local/bin}/pyponotify
This commit is contained in:
jo 2021-10-03 15:18:00 +02:00
parent bde2f2d494
commit 8be1366bef
12 changed files with 23 additions and 23 deletions

View file

@ -212,7 +212,7 @@ def make_scheduled_play_unavailable()
end
def update_source_status(sourcename, status) =
command = "timeout --signal=KILL 45 pyponotify --source-name=#{sourcename} --source-status=#{status} &"
command = "timeout --signal=KILL 45 libretime-playout-notify --source-name=#{sourcename} --source-status=#{status} &"
system(command)
log(command)
end
@ -438,6 +438,6 @@ if s4_enable == true then
end
command = "timeout --signal=KILL 45 pyponotify --liquidsoap-started &"
command = "timeout --signal=KILL 45 libretime-playout-notify --liquidsoap-started &"
log(command)
system(command)