This file contains 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 characters
cd /var/aegir/devshop-6.x-1.x/profiles/devshop/ | |
git pull | |
cd /var/aegir/devshop-6.x-1.x/profiles/devshop/modules/devshop/devshop_hosting | |
git pull | |
cd /var/aegir/.drush/devshop_provision | |
git pull | |
drush @hostmaster cc all | |
drush @hostmaster updb -y |
This file contains 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 characters
sudo apt-get install boot-repair git vim drush chromium-browser gnome-do mysql-server curl |
This file contains 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 characters
# Install Drush | |
# Install Git | |
# Install MySQL | |
# Get drupal codebase | |
git clone [email protected]:your/repo.git | |
cd repo | |
# Create drush alias | |
$aliases['sitename'] = array( |
This file contains 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 characters
Sample client side links loader | |
------------------------------- | |
Simple Javascript solution for cross server header type situations. | |
----------------- | |
A [Pen](http://codepen.io/anon/pen/Akosp) on [CodePen](http://codepen.io/). |
This file contains 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 characters
# For use in Chef: | |
# Adds a command: git-pull-recursive | |
file "/usr/local/bin/git-pull-recursive" do | |
owner "root" | |
group "root" | |
mode "0755" | |
action :create | |
content 'find . -type d -name .git -exec sh -c "cd \"{}\"/../ && pwd && git pull" \;' | |
end |
NewerOlder