From 3d213be48d525ba099cbe862e52c951a7a6a050c Mon Sep 17 00:00:00 2001 From: Stephan Raue Date: Sat, 15 Jan 2011 18:38:29 +0100 Subject: [PATCH] scripts/image: build and install SABnzbd if enabled (all builds except ATV) Signed-off-by: Stephan Raue --- projects/ATV/options | 3 +++ projects/Generic/options | 3 +++ projects/ION/options | 3 +++ projects/Intel/options | 3 +++ scripts/image | 3 +++ 5 files changed, 15 insertions(+) diff --git a/projects/ATV/options b/projects/ATV/options index af4d141618..268c6b6a72 100644 --- a/projects/ATV/options +++ b/projects/ATV/options @@ -111,6 +111,9 @@ # build and install Transmission BitTorrent daemon (yes / no) TRANSMISSION="no" +# build and install SABnzbd Newsgroup downloader daemon (yes / no) + SABNZBD="no" + # build and install some tools for including in release (yes / no) # some of this tools are: htop, nano, wgetpaste TOOLS="yes" diff --git a/projects/Generic/options b/projects/Generic/options index 01252598ee..d02c727c59 100644 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -110,6 +110,9 @@ # build and install Transmission BitTorrent daemon (yes / no) TRANSMISSION="yes" +# build and install SABnzbd Newsgroup downloader daemon (yes / no) + SABNZBD="yes" + # build and install some tools for including in release (yes / no) # some of this tools are: htop, nano, wgetpaste TOOLS="yes" diff --git a/projects/ION/options b/projects/ION/options index d9c09a3754..10d753402b 100644 --- a/projects/ION/options +++ b/projects/ION/options @@ -110,6 +110,9 @@ # build and install Transmission BitTorrent daemon (yes / no) TRANSMISSION="yes" +# build and install SABnzbd Newsgroup downloader daemon (yes / no) + SABNZBD="yes" + # build and install some tools for including in release (yes / no) # some of this tools are: htop, nano, wgetpaste TOOLS="yes" diff --git a/projects/Intel/options b/projects/Intel/options index 62bfc25e0b..f5ba937c5d 100644 --- a/projects/Intel/options +++ b/projects/Intel/options @@ -110,6 +110,9 @@ # build and install Transmission BitTorrent daemon (yes / no) TRANSMISSION="yes" +# build and install SABnzbd Newsgroup downloader daemon (yes / no) + SABNZBD="yes" + # build and install some tools for including in release (yes / no) # some of this tools are: htop, nano, wgetpaste TOOLS="yes" diff --git a/scripts/image b/scripts/image index e05fd2ee07..1e36263c93 100755 --- a/scripts/image +++ b/scripts/image @@ -97,6 +97,9 @@ mkdir -p $INSTALL # Transmission BitTorrent support [ "$TRANSMISSION" = "yes" ] && $SCRIPTS/install transmission +# SABnzbd support + [ "$SABNZBD" = "yes" ] && $SCRIPTS/install SABnzbd + # Graphic support [ ! "$DISPLAYSERVER" = "no" ] && $SCRIPTS/install $DISPLAYSERVER