-
-
Save kuroski/5cedc1d29d50a2e8bdb3 to your computer and use it in GitHub Desktop.
Revisions
-
kuroski revised this gist
Feb 10, 2015 . 1 changed file with 4 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,7 +1,9 @@ #!/bin/bash #Install Laravel Homestead (http://laravel.com/docs/5.0/homestead) #ssh into Homestead "homestead ssh" #Run the script using "sudo bash homestead_extras.sh" #Leave all the default options sugested during the installation, and do not modify any files!! apt-get update #Additional Packages -
kuroski revised this gist
Feb 10, 2015 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,4 +8,6 @@ apt-get update apt-get install -y php5-ldap php5-mssql #After service php5-fpm reload #THAAANKSSS rufhausen *_* -
kuroski revised this gist
Feb 10, 2015 . 1 changed file with 5 additions and 27 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,33 +1,11 @@ #!/bin/bash #run the script using "sudo bash homestead_extras.sh" #leave all the default options sugested during the installation, and do not modify any files apt-get update #Additional Packages apt-get install -y php5-ldap php5-mssql #After service php5-fpm reload -
rufhausen revised this gist
Nov 6, 2014 . 1 changed file with 5 additions and 7 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,20 +1,18 @@ #!/bin/bash apt-get update #Additional Packages apt-get install -y cifs-utils winbind smbclient bindfs gvfs gvfs-bin keyutils unzip php5-ldap php5-mssql zsh wget --no-check-certificate http://install.ohmyz.sh -O - | sh chsh vagrant -s /bin/zsh #PHP OCI8 Driver #Putting the cart before the horse here, but it leaves the only interactive part for the end. echo 'extension=oci8.so' >> /etc/php5/fpm/php.ini echo 'extension=oci8.so' >> /etc/php5/cli/php.ini mkdir /opt/oracle cd /opt/oracle @@ -32,4 +30,4 @@ pecl install oci8 # instantclient,/opt/oracle/instantclient_11_2 #After service php5-fpm reload -
rufhausen renamed this gist
Jun 18, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
rufhausen created this gist
Jun 18, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,35 @@ #!/bin/bash #Needed later for OCI8 apt-get install -y unzip #LDAP apt-get install -y php5-ldap #Oh-My-Zsh, because. apt-get install -y zsh wget --no-check-certificate http://install.ohmyz.sh -O - | sh chsh vagrant -s /bin/zsh #PHP OCI8 Driver #Putting the cart before the horse here, but it leaves the only interactive part for the end. echo 'extension=oci8.so' >> /etc/php5/fpm/php.ini mkdir /opt/oracle cd /opt/oracle wget https://www.dropbox.com/s/ng09xgejjx3hjof/instantclient-basic-linux.x64-11.2.0.3.0.zip wget https://www.dropbox.com/s/hux5d4bhj8daimr/instantclient-sdk-linux.x64-11.2.0.4.0.zip unzip \*.zip cd instantclient_11_2 ln -s libclntsh.so.11.1 libclntsh.so ln -s libocci.so.11.1 libocci.so pecl install oci8 #At the prompt # instantclient,/opt/oracle/instantclient_11_2 #After #sudo service php-fpm restart