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.

29 lines
775 B

  1. #!/bin/bash
  2. set -eux # -x for verbose logging to juju debug-log
  3. apt-get install -y --force-yes postgresql-9.1 cron kal-scripts
  4. cat <<EOF > /etc/cron.d/pgbackup
  5. SHELL=/bin/sh
  6. PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
  7. 32 1 * * * root ansi_colors=no dayold=2 nbold=5 pgdump_to_dir /var/backups
  8. EOF
  9. ## XXXvlab: Shouldn't we use ldap to create a key for each client and
  10. ## remove the clear password from here ?
  11. echo "CREATE USER openerp WITH PASSWORD 'jw8s0F4' CREATEDB NOCREATEROLE;" | sudo -u postgres psql
  12. ## add this to pghba
  13. #host all all 172.32.0.0/12 md5
  14. #host all all 172.33.0.0/12 md5
  15. ## modify listen_addresses in postgresql.conf
  16. #listen_addresses='*'