Code

Added blocking of non-released plugins
authorcajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 28 Nov 2008 13:50:29 +0000 (13:50 +0000)
committercajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8>
Fri, 28 Nov 2008 13:50:29 +0000 (13:50 +0000)
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13079 594d385d-05f5-0310-b6e9-bd551577e9d8

gosa-core/contrib/make-gosa-package

index ae4199ed6d02e542d702a1ae4cf9ffb9a0fd7610..46275751695a1410545f265128754e0dcbe296ea 100755 (executable)
@@ -25,6 +25,7 @@ SECTION="web"
 SI_SECTION="utils"
 TARGET_RELEASE="etch"
 MAKE_PLUGINS=""
+NOT_REPLEASED="heimdal dak dfs glpi opsi apache2 ssh"
 
 usage() {
        cat <<-EOF
@@ -125,6 +126,9 @@ gzip -f -9 "gosa-si_${GOSA_VER}.orig.tar"
 export OVERRIDE_VERSION="$GOSA_VER"
 if [ -z "$MAKE_PLUGINS" ]; then
        MAKE_PLUGINS=$(ls -1 gosa-plugins-${BRANCH}/*/plugin.dsc | sed 's/^.*\/\([^\/]*\)\/plugin.dsc$/\1/')
+       for i in $NOT_RELEASED; do
+               MAKE_PLUGINS=$(echo -n $MAKE_PLUGINS | sed "s/$i//")
+       done
 fi
 for plugin in $MAKE_PLUGINS; do