2016-12-30 19:30:38 +01:00
|
|
|
#!/bin/bash
|
2020-12-31 23:21:30 +01:00
|
|
|
cd /var/www/phab/phabricator
|
|
|
|
sudo -u www-data ./bin/phd stop
|
2016-12-30 19:30:38 +01:00
|
|
|
sudo service apache2 stop
|
2020-12-31 23:21:30 +01:00
|
|
|
sudo -u www-data git checkout stable
|
|
|
|
sudo -u www-data git pull origin stable
|
2016-12-30 19:30:38 +01:00
|
|
|
cd ../libphutil
|
2020-12-31 23:21:30 +01:00
|
|
|
sudo -u www-data git checkout stable
|
|
|
|
sudo -u www-data git pull origin stable
|
2016-12-30 19:30:38 +01:00
|
|
|
cd ../arcanist
|
2020-12-31 23:21:30 +01:00
|
|
|
sudo -u www-data git checkout stable
|
|
|
|
sudo -u www-data git pull origin stable
|
2016-12-30 19:30:38 +01:00
|
|
|
cd ../phabricator
|
2020-12-31 23:21:30 +01:00
|
|
|
sudo -u www-data ./bin/storage upgrade
|
|
|
|
sudo -u www-data ./bin/phd start
|
2016-12-30 19:30:38 +01:00
|
|
|
sudo service apache2 start
|