threadr.lostcave.ddnss.de/deployment-script.sh

18 lines
666 B
Bash
Raw Normal View History

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 -
}
2020-02-08 00:36:50 +01:00
#!/bin/bash
2020-02-12 10:26:59 +01:00
echo "Deployment script for repository \"web-deployment\"
`date`
=============================================================================="
rewrite_code %CONTENT_DIR% "\/common\/threadr"
#rewrite_code %ENFORCE_IP% `cat enforce_ip.template`
2020-02-21 13:14:22 +01:00
2020-02-12 10:26:59 +01:00
echo "==============================================================================
Done."