rhel.sh 393 B

1234567891011121314
  1. #!/usr/bin/bash
  2. set -eu
  3. # Workaround: postgresql fails on rhel-9 when it gets installed together with Zammad.
  4. dnf install -y postgresql-server
  5. dnf install -y zammad
  6. curl --retry 30 --retry-delay 1 --retry-connrefused http://localhost:3000 | grep "Zammad Helpdesk"
  7. dnf reinstall -y zammad
  8. curl --retry 30 --retry-delay 1 --retry-connrefused http://localhost:3000 | grep "Zammad Helpdesk"