Removed and ignored as it should remain here
authorRoland Häder <roland@mxchange.org>
Fri, 22 Feb 2013 12:52:31 +0000 (12:52 +0000)
committerRoland Häder <roland@mxchange.org>
Fri, 22 Feb 2013 12:52:31 +0000 (12:52 +0000)
.gitattributes
.gitignore
pub/svn-fgdata-bundle.sh [deleted file]

index 9313c2369a694b4fe6ca0b1a8248e26f34796d54..78e8e8a180ca239009646d6745e706a94cc33fbd 100644 (file)
@@ -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
index cc06034a5e1678290cd1a57d745ac0edca7ad64c..b0cd76c43cc950417363f12ceb2aee659c180c56 100644 (file)
@@ -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 (executable)
index b40e1cd..0000000
+++ /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."