]> git.sur5r.net Git - bacula/bacula/blob - gui/debian/bweb.postinst
a008da6a0f85831b178756c7820f5c9a03702abd
[bacula/bacula] / gui / debian / bweb.postinst
1 #!/bin/sh
2 set -e
3
4 . /usr/share/debconf/confmodule
5
6 db_version 2.0
7
8 if [ "$1" = "configure" ] ; then
9  if [ -f /etc/bweb/config ] ; then
10      echo "WARNING: /etc/bweb/config is no longer in use."
11      echo "Please, use /etc/bacula/bweb.conf instead."
12  fi
13
14  chown www-data:root /etc/bacula/bweb.conf
15  chmod 600 /etc/bacula/bweb.conf
16
17  chown www-data:root /var/spool/bweb
18  chmod 700 /var/spool/bweb
19  
20  echo
21  echo "If you are using postgresql, you have to load /usr/share/bweb/bweb-postgresql.sql in your database"
22  
23  echo "postgres@localhost:~$ psql bacula < /usr/share/bweb/bweb-postgresql.sql"
24  echo 
25  echo "You can use user/passwd (see /etc/apache/conf.d/bweb.conf)"
26  echo "You have to reload your apache configuration"
27  echo 
28  echo "'/usr/bin/bconsole -n -c /etc/bacula/bconsole.conf' must be accessible"
29  echo "by your www-data. You meed to use :"
30  echo "chmod 644 /etc/bacula/bconsole.conf"
31  echo "chmod 755 /usr/bin/bconsole"
32  
33 fi