Since the original ARR installation script basically performs a one-shot installation and launch only, we still need to start/restart the apps, one by one, or all together.
This script provides functionality to start, restart, and stop individual applications or all applications together. It also includes the ability to keep the apps open after a system restart, making it suitable for use in a crontab to maintain the availability of the applications.
When executed with no parameters, the script will launch all the applications by default.
app_name
: Launches the specified application.restart_app_name
: Restarts the specified application.stop_app_name
: Stops the specified application.launch_all
: Launches all the applications.restart_all
: Restarts all the applications.stop_all
: Stops all the applications.
The script provides the ability to restart individual applications or all applications together using the respective commands mentioned above.
The script is compatible with cron and can be used to maintain the availability of the applications after a system restart.
# Launch all apps by default
./arr.sh
# Launch individual apps
./arr.sh app_name
# Restart individual apps
./arr.sh restart_app_name
# Stop individual apps
./arr.sh stop_app_name
# Launch all apps
./arr.sh launch_all
# Restart all apps
./arr.sh restart_all
# Stop all apps
./arr.sh stop_all
ARR installation script: https://pulsedmedia.com/remote/pkg/arr_installation.txt
see also: https://www.reddit.com/r/seedboxes/comments/srgmmi/arr_app_installation_script_for_pulsedmedia/