Skip to content

Commit 070a065

Browse files
committed
Refactoring some scripts
1 parent 6037280 commit 070a065

File tree

5 files changed

+18
-19
lines changed

5 files changed

+18
-19
lines changed

README.md

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
11
Drupal Demo Framework / DF
22
=========
3-
You should install http://drupal.org/project/df like described on https://drupal.org/node/2012876. But since that didn't worked for me and went crazy on the ruby gem and versions and dependencies i created a couple of simple shell scripts.
4-
5-
Installing a LAMP server and drupal site isn't that hard and i believe you shouldn't have to install a shitload of ruby.
6-
7-
Just make sure you have vagrant and virtualbox installed and try ./go.sh
8-
3+
You should install http://drupal.org/project/df as described on https://drupal.org/node/2012876.
4+
But since that didn't worked for me and I went crazy on the ruby gems, chef and versions dependencies
5+
I created a couple of simple shell scripts.
96

7+
Installing a LAMP server and Drupal site isn't that hard and I believe you shouldn't have to install a shitload of ruby.
108

9+
Just make sure you have Vagrant and Virtualbox installed and try ./go.sh

Vagrantfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,5 +42,4 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
4242
# Install Drupal Demo Framework
4343
config.vm.provision :shell, :path => "install_demo.sh"
4444

45-
4645
end

install_demo.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ chmod -R 777 /vagrant/docroot/sites/default/files
1616

1717
drush site-install df --site-name=demo --root=/vagrant/docroot -y
1818

19-
cd /vagrant/docroot
20-
sh profiles/df/modules/dfs/dfs_wem/dfs_wem.sh
19+
#cd /vagrant/docroot
20+
#sh profiles/df/modules/dfs/dfs_wem/dfs_wem.sh
2121

provision/apache_php.sh

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,4 @@
22

33
apt-get install -y \
44
apache2-mpm-prefork \
5-
libapache2-mod-php5 \
6-
php5-imagick \
7-
php5-gd \
8-
php5-curl \
9-
php5-xdebug \
10-
php5-zendopcache \
11-
php5-memcache \
12-
php5-memcached \
13-
php5-redis
5+
libapache2-mod-php5

provision/base.sh

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,16 @@ aptitude update
55
aptitude install -y \
66
vim \
77
php5 \
8+
php5-imagick \
9+
php5-gd \
10+
php5-mysql \
11+
php5-curl \
12+
php5-xdebug \
13+
php5-zendopcache \
14+
php5-memcache \
15+
php5-memcached \
16+
php5-redis \
17+
php5-mcrypt \
818
git \
919
build-essential \
1020
drush \
@@ -15,4 +25,3 @@ aptitude install -y \
1525
zip \
1626
unzip \
1727
zsh
18-

0 commit comments

Comments
 (0)