You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

run.sh 199B

1234567891011121314151617
  1. #!/bin/sh
  2. set -e
  3. if [ ! -f ./ircd.yaml ]; then
  4. cp oragono.yaml ircd.yaml
  5. fi
  6. if [ ! -f ircd.db ]; then
  7. ./oragono initdb
  8. fi
  9. if [ ! -f tls.crt ]; then
  10. ./oragono mkcerts
  11. fi
  12. exec ./oragono run