summaryrefslogtreecommitdiff
path: root/buildbot/bootstrap-scripts/bootstrap-walletbuilder
diff options
context:
space:
mode:
Diffstat (limited to 'buildbot/bootstrap-scripts/bootstrap-walletbuilder')
-rwxr-xr-xbuildbot/bootstrap-scripts/bootstrap-walletbuilder38
1 files changed, 0 insertions, 38 deletions
diff --git a/buildbot/bootstrap-scripts/bootstrap-walletbuilder b/buildbot/bootstrap-scripts/bootstrap-walletbuilder
deleted file mode 100755
index 8a5304c..0000000
--- a/buildbot/bootstrap-scripts/bootstrap-walletbuilder
+++ /dev/null
@@ -1,38 +0,0 @@
-#!/bin/bash
-
-# Bootstrap the Taler setup for the user account that
-# is currently logged in.
-
-# Generates a setup for a single user,
-# including a postgresql DB.
-
-set -eu
-
-BRANCH=master
-REPOS="wallet-core"
-
-cd $HOME
-
-for component in $REPOS; do
- if ! test -d $HOME/$component; then
- git clone git://localhost/$component.git
- fi
-done
-
-for component in $REPOS; do
- echo "Checking out $component to $BRANCH"
- git -C $HOME/$component checkout $BRANCH
-done
-
-if test ! -d worker ; then
- buildbot-worker create-worker --umask=0o22 ~/worker localhost:9989 wallet-worker wallet-pass
-fi
-
-
-mkdir -p ~/.config/systemd/user/
-cp systemd-services/buildbot-worker-wallet.service ~/.config/systemd/user/
-
-systemctl --user daemon-reload || echo "Please use 'machinectl shell walletbuilder@.host' to log in to use this script"
-
-systemctl --user enable buildbot-worker-wallet.service
-systemctl --user start buildbot-worker-wallet.service