005_components 210 B

123456789101112131415
  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 Software that fails to meet the DFSG f
  10. \.
  11. EOF