Changeset View
Changeset View
Standalone View
Standalone View
scripts/install/install_rhel-derivs.sh
| Show First 20 Lines • Show All 111 Lines • ▼ Show 20 Lines | |||||
| pidof mysqld 2>&1 > /dev/null | pidof mysqld 2>&1 > /dev/null | ||||
| if [[ $? -ne 0 ]] | if [[ $? -ne 0 ]] | ||||
| then | then | ||||
| echo "Please remember to start the mysql server: /etc/init.d/mysqld start" | echo "Please remember to start the mysql server: /etc/init.d/mysqld start" | ||||
| fi | fi | ||||
| confirm | confirm | ||||
| if [[ ! -e libphutil ]] | |||||
| then | |||||
| git clone https://github.com/phacility/libphutil.git | |||||
| else | |||||
| (cd libphutil && git pull --rebase) | |||||
| fi | |||||
| if [[ ! -e arcanist ]] | if [[ ! -e arcanist ]] | ||||
| then | then | ||||
| git clone https://github.com/phacility/arcanist.git | git clone https://github.com/phacility/arcanist.git | ||||
| else | else | ||||
| (cd arcanist && git pull --rebase) | (cd arcanist && git pull --rebase) | ||||
| fi | fi | ||||
| if [[ ! -e phabricator ]] | if [[ ! -e phabricator ]] | ||||
| Show All 11 Lines | |||||