010_queues 477 B

12345678910111213141516171819
  1. #!/bin/sh
  2. set -e
  3. set -u
  4. echo "Creating core queues"
  5. QUEUEBASE="${DAKBASE}/queue"
  6. psql << EOF
  7. COPY policy_queue (queue_name, path, perms, change_perms,
  8. generate_metadata, stay_of_execution, send_to_build_queues) FROM stdin;
  9. unchecked ${QUEUEBASE}/unchecked 0660 0660 FALSE 86400 FALSE
  10. new ${QUEUEBASE}/new 0660 0660 FALSE 86400 FALSE
  11. newstage ${QUEUEBASE}/newstage 0660 0660 FALSE 86400 FALSE
  12. byhand ${QUEUEBASE}/byhand 0660 0660 FALSE 86400 FALSE
  13. \.
  14. EOF