diff --git a/scripts/install/install_rhel-derivs.sh b/scripts/install/install_rhel-derivs.sh
--- a/scripts/install/install_rhel-derivs.sh
+++ b/scripts/install/install_rhel-derivs.sh
@@ -10,14 +10,14 @@
if [[ ! -f $RHEL_VER_FILE ]]
then
echo "It looks like you're not running a Red Hat-derived distribution."
- echo "This script is intended to install Phabricator on RHEL-derived"
+ echo "This script is intended to install Phorge on RHEL-derived"
echo "distributions such as RHEL, Fedora, CentOS, and Scientific Linux."
echo "Proceed with caution."
confirm
fi
-echo "PHABRICATOR RED HAT DERIVATIVE INSTALLATION SCRIPT";
-echo "This script will install Phabricator and all of its core dependencies.";
+echo "PHORGE RED HAT DERIVATIVE INSTALLATION SCRIPT";
+echo "This script will install Phorge and all of its core dependencies.";
echo "Run it from the directory you want to install into.";
echo
@@ -43,7 +43,7 @@
confirm
fi
-echo "Phabricator will be installed to: $(pwd).";
+echo "Phorge will be installed to: $(pwd).";
confirm
echo "Testing sudo/root..."
@@ -119,20 +119,20 @@
if [[ ! -e arcanist ]]
then
- git clone https://github.com/phacility/arcanist.git
+ git clone https://we.phorge.it/source/arcanist.git
else
(cd arcanist && git pull --rebase)
fi
-if [[ ! -e phabricator ]]
+if [[ ! -e phorge ]]
then
- git clone https://github.com/phacility/phabricator.git
+ git clone https://we.phorge.it/source/phorge.git
else
- (cd phabricator && git pull --rebase)
+ (cd phorge && git pull --rebase)
fi
echo
echo
echo "Install probably worked mostly correctly. Continue with the 'Configuration Guide':";
echo
-echo " https://secure.phabricator.com/book/phabricator/article/configuration_guide/";
+echo " https://we.phorge.it/book/phorge/article/configuration_guide/";
diff --git a/scripts/install/install_ubuntu.sh b/scripts/install/install_ubuntu.sh
--- a/scripts/install/install_ubuntu.sh
+++ b/scripts/install/install_ubuntu.sh
@@ -5,7 +5,7 @@
read -e ignored
}
-INSTALL_URI=" https://phurl.io/u/install"
+INSTALL_URI=" https://we.phorge.it/book/phorge/article/installation_guide/"
failed() {
echo
@@ -30,8 +30,8 @@
confirm
fi
-echo "PHABRICATOR UBUNTU INSTALL SCRIPT";
-echo "This script will install Apache, Phabricator and its core dependencies.";
+echo "PHORGE UBUNTU INSTALL SCRIPT";
+echo "This script will install Apache, Phorge and its core dependencies.";
echo "Run it from the directory you want to install into.";
echo
@@ -52,7 +52,7 @@
then
echo 'This script is intented to install on modern operating systems; Your '
echo 'operating system is too old for this script.'
- echo 'You can still install Phabricator manually - please consult the installation'
+ echo 'You can still install Phorge manually - please consult the installation'
echo 'guide to see how:'
echo
echo $INSTALL_URI
@@ -65,7 +65,7 @@
if [ "$MAJOR" -eq 16 ]
then
echo 'This version of Ubuntu requires additional resources in order to install'
- echo 'and run Phabricator.'
+ echo 'and run Phorge.'
echo 'We will now add a the following package repository to your system:'
echo ' https://launchpad.net/~ondrej/+archive/ubuntu/php'
echo
@@ -76,7 +76,7 @@
fi
ROOT=`pwd`
-echo "Phabricator will be installed to: ${ROOT}.";
+echo "Phorge will be installed to: ${ROOT}.";
confirm
echo "Installing dependencies: git, apache, mysql, php...";
@@ -91,27 +91,27 @@
echo
sudo a2enmod rewrite || failed
-echo "Downloading Phabricator and dependencies..."
+echo "Downloading Phorge and dependencies..."
echo
if [ ! -e arcanist ]
then
- git clone https://github.com/phacility/arcanist.git
+ git clone https://we.phorge.it/source/arcanist.git
else
(cd arcanist && git pull --rebase)
fi
-if [ ! -e phabricator ]
+if [ ! -e phorge ]
then
- git clone https://github.com/phacility/phabricator.git
+ git clone https://we.phorge.it/source/phorge.git
else
- (cd phabricator && git pull --rebase)
+ (cd phorge && git pull --rebase)
fi
echo
echo
echo "Install probably worked mostly correctly. Continue with the 'Configuration Guide':";
echo
-echo " https://secure.phabricator.com/book/phabricator/article/configuration_guide/";
+echo " https://we.phorge.it/book/phorge/article/configuration_guide/";
echo
echo 'Next step is "Configuring Apache webserver".'
diff --git a/scripts/install/update_phabricator.sh b/scripts/install/update_phorge.sh
rename from scripts/install/update_phabricator.sh
rename to scripts/install/update_phorge.sh
--- a/scripts/install/update_phabricator.sh
+++ b/scripts/install/update_phorge.sh
@@ -4,12 +4,12 @@
set -x
# This is an example script for updating Phabricator, similar to the one used to
-# update . It might not work perfectly on your
+# update . It might not work perfectly on your
# system, but hopefully it should be easy to adapt. This script is not intended
# to work without modifications.
# NOTE: This script assumes you are running it from a directory which contains
-# arcanist/ and phabricator/.
+# arcanist/ and phorge/.
ROOT=`pwd` # You can hard-code the path here instead.
@@ -18,17 +18,17 @@
cd $ROOT/arcanist
git pull
-cd $ROOT/phabricator
+cd $ROOT/phorge
git pull
### CYCLE WEB SERVER AND DAEMONS ###############################################
# Stop daemons.
-$ROOT/phabricator/bin/phd stop
+$ROOT/phorge/bin/phd stop
# If running the notification server, stop it.
-# $ROOT/phabricator/bin/aphlict stop
+# $ROOT/phorge/bin/aphlict stop
# Stop the webserver (apache, nginx, lighttpd, etc). This command will differ
# depending on which system and webserver you are running: replace it with an
@@ -40,14 +40,14 @@
# Upgrade the database schema. You may want to add the "--force" flag to allow
# this script to run noninteractively.
-$ROOT/phabricator/bin/storage upgrade
+$ROOT/phorge/bin/storage upgrade
# Restart the webserver. As above, this depends on your system and webserver.
# NOTE: If you're running php-fpm, restart it here too.
sudo /etc/init.d/httpd start
# Restart daemons.
-$ROOT/phabricator/bin/phd start
+$ROOT/phorge/bin/phd start
# If running the notification server, start it.
-# $ROOT/phabricator/bin/aphlict start
+# $ROOT/phorge/bin/aphlict start