From: Roland Häder Date: Fri, 22 Feb 2013 12:52:31 +0000 (+0000) Subject: Removed and ignored as it should remain here X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=147c17d71be14a49d3403b5230c1dbcef5593e8c;p=flightgear-website.git Removed and ignored as it should remain here --- diff --git a/.gitattributes b/.gitattributes index 9313c23..78e8e8a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -128,7 +128,6 @@ pub/flightplans/WSSS-RPVM-04.xml -text svneol=native#application/xml pub/helper.zip -text svneol=unset#application/zip pub/rsyncd.conf -text pub/screenshot-anonymizer-fvwm-crystal_1280x1024.svg -text svneol=unset#image/svg%2Bxml -pub/svn-fgdata-bundle.sh svneol=native#text/plain /robots.txt svneol=native#text/plain /rsync.html -text svneol=native#application/xhtml%2Bxml /subversion-access.html -text svneol=native#application/xhtml%2Bxml diff --git a/.gitignore b/.gitignore index cc06034..b0cd76c 100644 --- a/.gitignore +++ b/.gitignore @@ -7,5 +7,6 @@ /kcdw /mpstatus /narendran95 +pub/*.sh /statto /stuart diff --git a/pub/svn-fgdata-bundle.sh b/pub/svn-fgdata-bundle.sh deleted file mode 100755 index b40e1cd..0000000 --- a/pub/svn-fgdata-bundle.sh +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh - -GIT_DIR="/home/quix0r/fgdata/" -BASE_FILE="/var/www/foo/pub/fgfs/fgdata.bundle" -USER="bar" -GROUP="www-data" - -cd "${GIT_DIR}" -nice --adjustment=19 rm -fv ${BASE_FILE}* -nice --adjustment=19 git pull || exit 1 -nice --adjustment=19 git-bundle create ${BASE_FILE} HEAD || exit 1 -echo "$0: Creating MD5 checksum ..." -nice --adjustment=19 md5sum ${BASE_FILE} > "${BASE_FILE}.md5" || exit 1 -echo "$0: Creating SHA1 checksum ..." -nice --adjustment=19 sha1sum ${BASE_FILE} > "${BASE_FILE}.sha1" || exit 1 -echo "$0: Creating SHA256 checksum ..." -nice --adjustment=19 sha256sum ${BASE_FILE} > "${BASE_FILE}.sha256" || exit 1 -echo "$0: Creating SHA512 checksum ..." -nice --adjustment=19 sha512sum ${BASE_FILE} > "${BASE_FILE}.sha512" || exit 1 -echo "$0: Doing chmod/chown ..." -chown "${USER}.${GROUP}" ${BASE_FILE}* || exit 1 -chmod a+r ${BASE_FILE}* || exit 1 -echo "$0: All done."