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 characters
#This is an simple proxy configuration for Ubuntu (tested only in Ubuntu) | |
#With this configuration you will shurf on web, use apt or aptitude, use curl | |
#and use the composer (getcomposer.org) | |
#If you run some command with sudo you can get some trouble | |
#If you are in trouble use sudo -E | |
#In ~/.bashrc put these configs |
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 characters
<?xml version="1.0" encoding="UTF-8"?> | |
<project name="DB Post Deploy Restore" default="run"> | |
<property file="properties" /> | |
<!-- find out what db's need to be restored and loop through the process for each --> | |
<target name="run"> | |
<input propertyname="production.user">(Required) Please enter your ssh user name:</input> | |
<foreach list="${dbs}" param="db" target="prepare" /> |