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.
 
 

8 lines
352 B

  1. #!/bin/bash
  2. set -e
  3. echo "Starting CouchDB"
  4. /etc/init.d/couchdb start
  5. ( set +e; for i in $(seq 10); do curl -sf http://127.0.0.1:5984/ && exit 0 || sleep 1; done; echo 'CouchDB still not operational after 10 seconds'; exit 1; )
  6. echo "Dropping privileges"
  7. setpriv --reuid=archivebot --regid=archivebot --init-groups /home/archivebot/launch-archivebot.sh