dumploadtest.sh: added an exit 0 to the top of the script.
[citadel.git] / citadel / dumploadtest.sh
index 4af546ff66a9c0db6e4a5f0aa746d147fbee7529..7179f399180e853ec0f8a55db8c27197b979139c 100755 (executable)
@@ -1,5 +1,13 @@
 #!/bin/bash
 
+
+# This script dumps the database, deletes the database, loads the database, dumps it again...
+# ...and then compares the two dumps to see if we have full fidelity between them.
+#
+# Did you read that correctly?  Yes, it will DELETE your database.  So don't run this.
+
+exit 0         # In fact, here's an exit statement you must delete before you can even run it.
+
 ps ax | grep citserver | grep -v grep >/dev/null 2>/dev/null && {
        echo dont do this while the server is running
        exit 1