#!/bin/bash -xe apt-get install php5-mysql php5-curl php5-apcu php5-gd cd /opt/phabricator/phabricator # set up database sudo -u phabricator ./bin/config set mysql.host ninetales.scimonshouse.net sudo -u phabricator ./bin/config set mysql.user phabricator sudo -u phabricator ./bin/config set mysql.pass phabricator sudo -u phabricator ./bin/storage upgrade --force # set up user accounts sudo -u phabricator ./bin/config set diffusion.ssh-user git sudo -u phabricator ./bin/config set diffusion.phd-user phabricator echo "git ALL=(phabricator) SETENV: NOPASSWD: /usr/bin/git, /usr/bin/git-upload-pack, /usr/bin/git-receive-pack" > /etc/sudoers.d/phabricator