Hashar has uploaded a new change for review. https://gerrit.wikimedia.org/r/90115
Change subject: placeholders for mysql/postgre installers ...................................................................... placeholders for mysql/postgre installers Since I am a going to mess up with Jenkins jobs to implement Mysql/PostgreSQL based jobs, I want to make sure we bail out properly whenever the job is being used. Will eventually refactor mw-install* script somehow, maybe using a shared script with symlinks pointing to it, the $0 would give the database to install. Change-Id: I7eed97253003ca1aa14bc36fcbbba4bb99a4b6df --- A bin/mw-install-mysql.sh A bin/mw-install-postgre.sh A bin/mw-install-postgresql.sh A bin/not-implemented.sh 4 files changed, 6 insertions(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/integration/jenkins refs/changes/15/90115/1 diff --git a/bin/mw-install-mysql.sh b/bin/mw-install-mysql.sh new file mode 120000 index 0000000..0fdaf41 --- /dev/null +++ b/bin/mw-install-mysql.sh @@ -0,0 +1 @@ +not-implemented.sh \ No newline at end of file diff --git a/bin/mw-install-postgre.sh b/bin/mw-install-postgre.sh new file mode 120000 index 0000000..0fdaf41 --- /dev/null +++ b/bin/mw-install-postgre.sh @@ -0,0 +1 @@ +not-implemented.sh \ No newline at end of file diff --git a/bin/mw-install-postgresql.sh b/bin/mw-install-postgresql.sh new file mode 120000 index 0000000..0fdaf41 --- /dev/null +++ b/bin/mw-install-postgresql.sh @@ -0,0 +1 @@ +not-implemented.sh \ No newline at end of file diff --git a/bin/not-implemented.sh b/bin/not-implemented.sh new file mode 100755 index 0000000..6fcf425 --- /dev/null +++ b/bin/not-implemented.sh @@ -0,0 +1,3 @@ +#!/bin/bash +echo "Sorry script `basename $0` is not yet implemented" +exit 1 -- To view, visit https://gerrit.wikimedia.org/r/90115 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I7eed97253003ca1aa14bc36fcbbba4bb99a4b6df Gerrit-PatchSet: 1 Gerrit-Project: integration/jenkins Gerrit-Branch: master Gerrit-Owner: Hashar <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
