005_components 267 B

12345678910111213141516
  1. #!/bin/sh
  2. set -e
  3. set -u
  4. echo "Creating components"
  5. psql << EOF
  6. COPY component (name, description, meets_dfsg) FROM stdin;
  7. main Main t
  8. contrib Contrib t
  9. non-free-firmware Firmware that fails to meet the DFSG f
  10. non-free Software that fails to meet the DFSG f
  11. \.
  12. EOF