forked from root/threadr.lostcave.ddnss.de
18 lines
666 B
Bash
Executable File
18 lines
666 B
Bash
Executable File
function rewrite_code {
|
|
echo "Replacing $1 with $2 in all HTML and PHP files."
|
|
echo -e "`find ./ -name '*.html' -or -name '*.php' | sed "s/^/workingfile=\'/;s/\$/\'\; cat \\\$workingfile > .\/tmpdeploymentfile\; cat tmpdeploymentfile | sed \'s#$1#$2#\' > \\\$workingfile/"`\nrm tmpdeploymentfile" | bash -
|
|
}
|
|
|
|
|
|
#!/bin/bash
|
|
echo "Deployment script for repository \"web-deployment\"
|
|
`date`
|
|
=============================================================================="
|
|
|
|
rewrite_code %CONTENT_DIR% "\/common\/threadr"
|
|
#rewrite_code %ENFORCE_IP% `cat enforce_ip.template`
|
|
|
|
|
|
echo "==============================================================================
|
|
Done."
|