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
$ grunt server | |
Running "clean:build" (clean) task | |
Cleaning "tmp"...OK | |
Running "lock" task | |
Running "concurrent:debug" (concurrent) task | |
Running "emberTemplates:debug" (emberTemplates) task | |
File "tmp/public/assets/templates.js" created. |
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
Hello. World! |
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
#!/bin/bash | |
sshPort="40000" | |
shellUser=`whoami` | |
export homeDir="/home/$shellUser" | |
export baseDir="$homeDir/server-setup" | |
addToRepo() { | |
file=$1 |
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
#!/bin/bash | |
# Test that domxml is installed | |
php -r "domxml_version();" > /dev/null 2>&1 | |
[ $? -eq 0 ] || echo -e "\a#### Error: php4-domxml not loaded ####" | |
# Test that rsync is installed | |
rsync -h > /dev/null 2>&1 | |
[ $? -eq 0 ] || echo -e "\a#### Error: rsync not installed ####" |
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
#!/bin/bash | |
V30=`grep "3.0" /etc/issue` | |
V31=`grep "3.1" /etc/issue` | |
V4=`grep "4." /etc/issue` | |
V5=`grep "5." /etc/issue` | |
V6=`grep "6." /etc/issue` | |
UPDATE_SOURCES=1 | |
if [ "$V30" != "" ]; then |
NewerOlder