選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

12 行
337 B

  1. #!/bin/sh
  2. # Make sure script is run as root.
  3. if [ "$(id -u)" != "0" ]; then
  4. echo "Must be run as root with sudo! Try: sudo ./disable.sh"
  5. exit 1
  6. fi
  7. # Disable any supervisor process that start video looper.
  8. supervisorctl stop video_looper
  9. mv /etc/supervisor/conf.d/video_looper.conf /etc/supervisor/conf.d/video_looper.conf.disabled