Skip to content

Commit

Permalink
fix small but imperative errors in bootstrap files.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurtin committed Oct 4, 2016
1 parent 0af664e commit f76bf0b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bootstrap/manage_django_db_postgres.sh
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ check_package postgresql-client-common
check_package libpq-dev
# is needed to compile Python extension written in C ot C++, ie: psycopg2
# JUST INSTALL THIS TOO FOR NOW! EVENTUALLY NEED TO FIX THIS.
check_package python3-dev
# check_package python3-dev
# USER MAY NEED A DIFFERENT VERSION OF python-dev, ie: 'python3.4-dev'
check_package python-dev
check_module psycopg2
Expand Down
2 changes: 1 addition & 1 deletion bootstrap/setup_phppgadmin.sh
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ sudo service apache2 reload
# enable user "postgres" to login
sudo sed -i "s/\s*\$conf\['extra_login_security'\] = true;/ \$conf\['extra_login_security'\] = false;/" /etc/phppgadmin/config.inc.php
# Update port 80 to port 8080
sudo sed -i "s/Listen 80\s+/Listen 8080/" /etc/apache2/ports.conf
sudo sed -i "s/Listen 80\s*/Listen 8080/" /etc/apache2/ports.conf
sudo sed -i "s/:80>/:8080>/" /etc/apache2/sites-available/000-default.conf
sudo /etc/init.d/apache2 restart

Expand Down

0 comments on commit f76bf0b

Please sign in to comment.