26 lines
1.3 KiB
Bash
26 lines
1.3 KiB
Bash
|
#!/usr/local/bin/bash
|
||
|
# This file contains the install script for lidarr
|
||
|
|
||
|
# Check if dataset for completed download and it parent dataset exist, create if they do not.
|
||
|
# shellcheck disable=SC2154
|
||
|
createmount "$1" "${global_dataset_downloads}"
|
||
|
createmount "$1" "${global_dataset_downloads}"/complete /mnt/fetched
|
||
|
|
||
|
# Check if dataset for media library and the dataset for movies exist, create if they do not.
|
||
|
# shellcheck disable=SC2154
|
||
|
createmount "$1" "${global_dataset_media}"
|
||
|
createmount "$1" "${global_dataset_media}"/music /mnt/music
|
||
|
|
||
|
|
||
|
iocage exec "$1" "fetch https://github.com/lidarr/Lidarr/releases/download/v0.2.0.371/Lidarr.develop.0.2.0.371.linux.tar.gz -o /usr/local/share"
|
||
|
iocage exec "$1" "tar -xzvf /usr/local/share/Lidarr.develop.0.2.0.371.linux.tar.gz -C /usr/local/share"
|
||
|
iocage exec "$1" "rm /usr/local/share/Lidarr.develop.0.2.0.371.linux.tar.gz"
|
||
|
iocage exec "$1" "pw user add lidarr -c lidarr -u 353 -d /nonexistent -s /usr/bin/nologin"
|
||
|
iocage exec "$1" chown -R lidarr:lidarr /usr/local/share/Lidarr /config
|
||
|
iocage exec "$1" mkdir /usr/local/etc/rc.d
|
||
|
# shellcheck disable=SC2154
|
||
|
cp "${SCRIPT_DIR}"/blueprints/lidarr/includes/lidarr.rc /mnt/"${global_dataset_iocage}"/jails/"$1"/root/usr/local/etc/rc.d/lidarr
|
||
|
iocage exec "$1" chmod u+x /usr/local/etc/rc.d/lidarr
|
||
|
iocage exec "$1" sysrc "lidarr_enable=YES"
|
||
|
iocage exec "$1" service lidarr start
|