| 
									
										
										
										
											2011-05-31 14:14:05 -07:00
										 |  |  | #!/bin/bash
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | confirm() { | 
					
						
							|  |  |  |   echo "Press RETURN to continue, or ^C to cancel."; | 
					
						
							|  |  |  |   read -e ignored | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-14 17:06:12 -07:00
										 |  |  | GIT='git' | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-10-17 10:18:18 -07:00
										 |  |  | LTS="Ubuntu 10.04" | 
					
						
							| 
									
										
										
										
											2011-05-31 14:14:05 -07:00
										 |  |  | ISSUE=`cat /etc/issue` | 
					
						
							|  |  |  | if [[ $ISSUE != Ubuntu* ]] | 
					
						
							|  |  |  | then | 
					
						
							|  |  |  |   echo "This script is intended for use on Ubuntu, but this system appears"; | 
					
						
							|  |  |  |   echo "to be something else. Your results may vary."; | 
					
						
							|  |  |  |   echo | 
					
						
							|  |  |  |   confirm | 
					
						
							| 
									
										
										
										
											2011-10-17 10:18:18 -07:00
										 |  |  | elif [[ `expr match "$ISSUE" "$LTS"` -eq ${#LTS} ]] | 
					
						
							| 
									
										
										
										
											2011-10-14 17:06:12 -07:00
										 |  |  | then | 
					
						
							|  |  |  |   GIT='git-core' | 
					
						
							| 
									
										
										
										
											2011-05-31 14:14:05 -07:00
										 |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | echo "PHABRICATOR UBUNTU INSTALL SCRIPT"; | 
					
						
							|  |  |  | echo "This script will install Phabricator and all of its core dependencies."; | 
					
						
							|  |  |  | echo "Run it from the directory you want to install into."; | 
					
						
							|  |  |  | echo | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | ROOT=`pwd` | 
					
						
							|  |  |  | echo "Phabricator will be installed to: ${ROOT}."; | 
					
						
							|  |  |  | confirm | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | echo "Testing sudo..." | 
					
						
							|  |  |  | sudo true | 
					
						
							|  |  |  | if [ $? -ne 0 ] | 
					
						
							|  |  |  | then | 
					
						
							|  |  |  |   echo "ERROR: You must be able to sudo to run this script."; | 
					
						
							|  |  |  |   exit 1; | 
					
						
							|  |  |  | fi; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | echo "Installing dependencies: git, apache, mysql, php..."; | 
					
						
							|  |  |  | echo | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | set +x | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | sudo apt-get -qq update | 
					
						
							| 
									
										
										
										
											2014-01-02 11:59:11 -08:00
										 |  |  | sudo apt-get install \
 | 
					
						
							|  |  |  |   $GIT mysql-server apache2 dpkg-dev \
 | 
					
						
							|  |  |  |   php5 php5-mysql php5-gd php5-dev php5-curl php-apc php5-cli php5-json | 
					
						
							| 
									
										
										
										
											2011-05-31 14:14:05 -07:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-09-10 07:53:49 -07:00
										 |  |  | # Enable mod_rewrite | 
					
						
							|  |  |  | sudo a2enmod rewrite | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-05-31 14:14:05 -07:00
										 |  |  | HAVEPCNTL=`php -r "echo extension_loaded('pcntl');"` | 
					
						
							|  |  |  | if [ $HAVEPCNTL != "1" ] | 
					
						
							|  |  |  | then | 
					
						
							|  |  |  |   echo "Installing pcntl..."; | 
					
						
							|  |  |  |   echo | 
					
						
							|  |  |  |   apt-get source php5 | 
					
						
							|  |  |  |   PHP5=`ls -1F | grep '^php5-.*/$'` | 
					
						
							|  |  |  |   (cd $PHP5/ext/pcntl && phpize && ./configure && make && sudo make install) | 
					
						
							|  |  |  | else | 
					
						
							|  |  |  |   echo "pcntl already installed"; | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ ! -e libphutil ] | 
					
						
							|  |  |  | then | 
					
						
							| 
									
										
										
										
											2014-06-03 09:40:16 -07:00
										 |  |  |   git clone https://github.com/phacility/libphutil.git | 
					
						
							| 
									
										
										
										
											2011-05-31 14:14:05 -07:00
										 |  |  | else | 
					
						
							|  |  |  |   (cd libphutil && git pull --rebase) | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ ! -e arcanist ] | 
					
						
							|  |  |  | then | 
					
						
							| 
									
										
										
										
											2014-06-03 09:40:16 -07:00
										 |  |  |   git clone https://github.com/phacility/arcanist.git | 
					
						
							| 
									
										
										
										
											2011-05-31 14:14:05 -07:00
										 |  |  | else | 
					
						
							|  |  |  |   (cd arcanist && git pull --rebase) | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | if [ ! -e phabricator ] | 
					
						
							|  |  |  | then | 
					
						
							| 
									
										
										
										
											2014-06-03 09:40:16 -07:00
										 |  |  |   git clone https://github.com/phacility/phabricator.git | 
					
						
							| 
									
										
										
										
											2011-05-31 14:14:05 -07:00
										 |  |  | else | 
					
						
							|  |  |  |   (cd phabricator && git pull --rebase) | 
					
						
							|  |  |  | fi | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | echo | 
					
						
							|  |  |  | echo | 
					
						
							|  |  |  | echo "Install probably worked mostly correctly. Continue with the 'Configuration Guide':"; | 
					
						
							|  |  |  | echo | 
					
						
							| 
									
										
										
										
											2015-07-07 13:35:57 -07:00
										 |  |  | echo "    https://secure.phabricator.com/book/phabricator/article/configuration_guide/"; | 
					
						
							| 
									
										
										
										
											2011-05-31 14:14:05 -07:00
										 |  |  | echo | 
					
						
							|  |  |  | echo "You can delete any php5-* stuff that's left over in this directory if you want."; |