010_queues 1.3 KB

1234567891011121314151617181920212223242526272829
  1. #!/bin/sh
  2. set -e
  3. set -u
  4. echo "Creating core queues"
  5. QUEUEBASE="${DAKBASE}/queue"
  6. psql -c "INSERT INTO policy_queue (queue_name, path, perms, change_perms,
  7. generate_metadata, stay_of_execution, send_to_build_queues)
  8. VALUES ('unchecked', '${QUEUEBASE}/unchecked', '0660', '0660',
  9. FALSE, 86400, FALSE)" >/dev/null
  10. psql -c "INSERT INTO policy_queue (queue_name, path, perms, change_perms,
  11. generate_metadata, stay_of_execution, send_to_build_queues)
  12. VALUES ('new', '${QUEUEBASE}/new', '0660', '0660',
  13. FALSE, 86400, FALSE)" >/dev/null
  14. psql -c "INSERT INTO policy_queue (queue_name, path, perms, change_perms,
  15. generate_metadata, stay_of_execution, send_to_build_queues)
  16. VALUES ('newstage', '${QUEUEBASE}/newstage', '0660', '0660',
  17. FALSE, 86400, FALSE)" >/dev/null
  18. psql -c "INSERT INTO policy_queue (queue_name, path, perms, change_perms,
  19. generate_metadata, stay_of_execution, send_to_build_queues)
  20. VALUES ('byhand', '${QUEUEBASE}/byhand', '0660', '0660',
  21. FALSE, 86400, FALSE)" >/dev/null