Minor improvements to examples

master
Ferry Boender 4 years ago
parent 077ecf696c
commit 40f9f95a4f
  1. 2
      examples/auth/auth.json
  2. 8
      examples/simple/job_import.sh

@ -8,7 +8,7 @@
{
"name": "do_nothing",
"title": "Test form",
"description": "You should only see this if you've entered the correct password",
"description": "All users that logged in should be able to see this.",
"submit_title": "Do nothing",
"script": "job_do_nothing.sh",
"fields": [

@ -6,5 +6,9 @@ MYSQL="mysql --defaults-file=$MYSQL_DEFAULTS_FILE"
echo "This is what would be executed if this wasn't a fake script:"
echo
echo "echo 'DROP DATABASE $target_db' | $MYSQL"
echo "$MYSQL ${target_db} < ${sql_file}"
echo " echo 'DROP DATABASE $target_db' | $MYSQL"
echo " $MYSQL ${target_db} < ${sql_file}"
echo
echo "The uploaded file was $(stat --printf="%s" $sql_file) bytes"
echo "The (binary) md5 hash of the uploaded file is: $(md5sum -b $sql_file | cut -d " " -f1)"

Loading…
Cancel
Save