Import some files and transform to working containers for:

* mysql
* lighttpd (with php and mysql)
* transmission
* sabnzbd
* sickbeard
* couchpotato
* headphones
* btsync
This commit is contained in:
2015-01-14 15:17:36 +00:00
parent ecb0bb0815
commit a307062d5b
81 changed files with 635 additions and 94 deletions

28
build/boot/sickbeard.sh Normal file
View File

@@ -0,0 +1,28 @@
#!/bin/bash
set -e
mkdir -p `dirname $SICKBEARD_CONFIG`
if [[ ! -e $SICKBEARD_CONFIG ]]; then
cat << EOF > $SICKBEARD_CONFIG
[General]
config_version = 6
log_dir = /host/var/log/sickbeard
use_nzbs = 1
use_torrents = 1
nzb_method = sabnzbd
flatten_folders_default = 1
root_dirs = 0|/host/srv/shows
tv_download_dir = /host/srv/downloads
process_automatically = 1
rename_episodes = 1
extra_scripts = /opt/subtitles
[Blackhole]
nzb_dir = ""
torrent_dir = /host/srv/torrents
[SABnzbd]
sab_username = ""
sab_password = ""
sab_apikey = ""
sab_category = tv
sab_host = http://sabnzbd:8080/
EOF
fi