Skip to content
Snippets Groups Projects
Commit 08e0f9b2 authored by Jaime Perez Crespo's avatar Jaime Perez Crespo
Browse files

Adapt the script that builds releases to disable all imported modules by default.

parent 4a9efcf8
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,11 @@ if [ -f "$TARGET/composer.json" ]; then ...@@ -56,6 +56,11 @@ if [ -f "$TARGET/composer.json" ]; then
php "$TARGET/composer.phar" require simplesamlphp/simplesamlphp-module-saml2debug:dev-master --update-no-dev --prefer-dist -o -d "$TARGET" php "$TARGET/composer.phar" require simplesamlphp/simplesamlphp-module-saml2debug:dev-master --update-no-dev --prefer-dist -o -d "$TARGET"
fi fi
for MOD in InfoCard aggregator aggregator2 autotest consentSimpleAdmin logpeek metaedit modinfo openid openidProvider papi saml2debug
do
mv "$TARGET/modules/$MOD/default-enable" "$TARGET/modules/$MOD/default-disable"
done
mkdir -p "$TARGET/config" "$TARGET/metadata" "$TARGET/cert" "$TARGET/log" mkdir -p "$TARGET/config" "$TARGET/metadata" "$TARGET/cert" "$TARGET/log"
cp -rv "$TARGET/config-templates/"* "$TARGET/config/" cp -rv "$TARGET/config-templates/"* "$TARGET/config/"
cp -rv "$TARGET/metadata-templates/"* "$TARGET/metadata/" cp -rv "$TARGET/metadata-templates/"* "$TARGET/metadata/"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment