commit 0d7c3ab8585a8a84824bcdc6d75122d5ba7a3c72 Author: kjeld Schouten-Lebbing Date: Mon Feb 24 14:35:03 2020 +0100 Plex install script diff --git a/plex.sh b/plex.sh new file mode 100644 index 00000000..9c426637 --- /dev/null +++ b/plex.sh @@ -0,0 +1,13 @@ +#!/bin/sh + +echo '{"pkgs":["plexmediaserver-plexpass","ca_root_nss"]}' > /tmp/pkg.json +iocage create -n "plex" -p /tmp/pkg.json -r 11.3-RELEASE ip4_addr="vnet0|192.168.10.23/24" defaultrouter="192.168.10.1" vnet="on" allow_raw_sockets="1" boot="on" +rm /tmp/pkg.json +iocage exec plex mkdir -p /config +iocage exec plex mkdir -p /mnt/library +iocage fstab -a plex /mnt/tank/apps/plex /config nullfs rw 0 0 +iocage fstab -a plex /mnt/tank/Library /mnt/library nullfs ro 0 0 +iocage exec plex chown -R plex:plex /config +iocage exec plex sysrc "plexmediaserver_plexpass_enable=YES" +iocage exec plex sysrc plexmediaserver_plexpass_support_path="/config" +iocage exec plex service plexmediaserver_plexpass start \ No newline at end of file