From 140590b42804b935c375df4e8d525b8dd74b680e Mon Sep 17 00:00:00 2001 From: Mario Fetka Date: Sat, 15 Nov 2014 21:31:13 +0100 Subject: [PATCH] add a script to copy everything to testing --- bin/opsi-all-testing.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/opsi-all-testing.sh b/bin/opsi-all-testing.sh index 825ee2a..4d2cbf5 100755 --- a/bin/opsi-all-testing.sh +++ b/bin/opsi-all-testing.sh @@ -1,7 +1,7 @@ #! /bin/bash BASE_DIR="`dirname $0`/.." -LIB_DIR="${BASE_DIR}/lib" +BIN_DIR="${BASE_DIR}/bin" OPSI_WEB_ROOT="" CRON_TEMP="" @@ -61,7 +61,7 @@ for pkg_root in public restricted ; do else NAME="${REV_NAME}" fi - ./opsi-administration.sh --root ${OPSI_ROOT} --name $REV_PN --type ${pkg_root} --from integration --to testing --version $REV_VERSION-$REV_CREATOR_TAG$REV_RELEASE --purge + ${BIN_DIR}/opsi-administration.sh --root ${OPSI_ROOT} --name $REV_PN --type ${pkg_root} --from integration --to testing --version $REV_VERSION-$REV_CREATOR_TAG$REV_RELEASE --purge done done done