Update bacula-fd.conf template.
[bacula-cn.git] / debian / postinst
1 #!/bin/sh
2 # postinst script for bacula-cn
3 #
4 # see: dh_installdeb(1)
5
6 set -e
7
8 # Source debconf library.
9 . /usr/share/debconf/confmodule
10
11 # summary of how this script can be called:
12 #        * <postinst> `configure' <most-recently-configured-version>
13 #        * <old-postinst> `abort-upgrade' <new version>
14 #        * <conflictor's-postinst> `abort-remove' `in-favour' <package>
15 #          <new-version>
16 #        * <postinst> `abort-remove'
17 #        * <deconfigured's-postinst> `abort-deconfigure' `in-favour'
18 #          <failed-install-package> <version> `removing'
19 #          <conflicting-package> <version>
20 # for details, see http://www.debian.org/doc/debian-policy/ or
21 # the debian-policy package
22
23 generate_fd_config() {
24     FD_CONFIG=/etc/bacula/bacula-fd.conf
25
26     if [ -s $FD_CONFIG ] && grep -q 'PKI Keypair' $FD_CONFIG; then
27         echo $FD_CONFIG already exists, skipping.
28     else
29         umask 077
30       
31         if [ -e $FD_CONFIG -a ! -e $FD_CONFIG.bak ]; then
32             cp -av $FD_CONFIG $FD_CONFIG.bak
33         fi
34
35         echo Generating $FD_CONFIG
36         rm -f $REQUEST_FILE
37         cat >$FD_CONFIG <<EOF
38 #
39 # List Directors who are permitted to contact this File daemon
40 #
41 Director {
42   Name = sysbackup-dir
43   Password = "$PASS_FD"
44
45   TLS Enable = yes
46   TLS Require = yes
47   TLS Verify Peer = yes
48   # Allow only the Director to connect
49   TLS Allowed CN = "sysbackup.carnet.hr"
50   TLS CA Certificate File = "/etc/bacula/sysbackup.pem"
51   # This is a server certificate. It is used by connecting
52   # directors to verify the authenticity of this file daemon
53   TLS Certificate = "/etc/bacula/bacula-fd.pem"
54   TLS Key = "/etc/bacula/bacula-fd.pem"
55   TLS DH File = "/etc/bacula/dh1024.pem"
56 }
57
58 #
59 # "Global" File daemon configuration specifications
60 #
61 FileDaemon {                          # this is me
62   Name = $HOST-fd
63   FDport = 9102                  # where we listen for the director
64   WorkingDirectory = /var/lib/bacula
65   Pid Directory = /run/bacula
66   Maximum Concurrent Jobs = 20
67   Plugin Directory = /usr/lib/bacula
68   FDAddress = $IP
69
70   # you need these TLS entries so the FD and SD can communicate
71   TLS Enable = yes
72   TLS Require = yes
73   TLS CA Certificate File = "/etc/bacula/sysbackup.pem"
74   TLS Certificate = "/etc/bacula/bacula-fd.pem"
75   TLS Key = "/etc/bacula/bacula-fd.pem"
76
77   # you need these PKI entries to encrypt data before sending it to backup
78   PKI Signatures = Yes            # Enable Data Signing
79   PKI Encryption = Yes            # Enable Data Encryption
80   PKI Keypair = "/etc/bacula/bacula-fd.pem"    # Public and Private Keys
81 }
82
83 # Send all messages except skipped files back to Director
84 Messages {
85   Name = Standard
86   director = sysbackup-dir = all, !skipped, !restored
87 }
88 EOF
89     fi
90 }
91
92 generate_bconsole_config() {
93     BCONSOLE_CONFIG=/etc/bacula/bconsole.conf
94
95     if [ -s $BCONSOLE_CONFIG ] && grep -q 'Console {' $BCONSOLE_CONFIG; then
96         echo $BCONSOLE_CONFIG already exists, skipping.
97     else
98         umask 077
99
100         if [ -e $BCONSOLE_CONFIG -a ! -e $BCONSOLE_CONFIG.bak ]; then
101             cp -av $BCONSOLE_CONFIG $BCONSOLE_CONFIG.bak
102         fi
103
104         echo Generating $BCONSOLE_CONFIG
105         rm -f $REQUEST_FILE
106         cat >$BCONSOLE_CONFIG <<EOF
107 #
108 # Bacula User Agent (or Console) Configuration File
109 #
110
111 Director {
112   Name = sysbackup-dir
113   DIRport = 9101
114   address = sysbackup.carnet.hr
115   Password = "__INVALID__"   # not used
116
117   # you need these TLS entries so the bconsole and Director can communicate
118   TLS Enable = yes
119   TLS Require = yes
120   TLS CA Certificate File = "/etc/bacula/sysbackup.pem"
121   TLS Certificate = "/etc/bacula/bacula-fd.pem"
122   TLS Key = "/etc/bacula/bacula-fd.pem"
123 }
124
125 Console {
126   Name = $HOST-acl
127   Password = "$PASS_BCONSOLE"
128 }
129 EOF
130     fi
131 }
132
133 generate_dh() {
134     DH_FILE=/etc/bacula/dh1024.pem
135
136     if [ -s $DH_FILE ]; then
137         echo $DH_FILE already exists, skipping.
138     else
139         umask 077
140
141         echo Generating $DH_FILE
142         openssl dhparam -out $DH_FILE -5 1024
143     fi
144 }
145
146 generate_cert() {
147     CERT_FILE=/etc/bacula/bacula-fd.pem
148
149     if [ -s $CERT_FILE ]; then
150         echo $CERT_FILE already exists, skipping.
151     else
152         umask 077
153
154         echo Generating $CERT_FILE
155         rm -f $REQUEST_FILE
156         openssl req -new -newkey rsa:2048 -nodes -keyout $CERT_FILE \
157             -subj "/C=HR/ST=Croatia/O=CARNet/OU=sysbackup/CN=$IP" \
158             -x509 -extensions usr_cert -days $((365*5)) \
159             -out $CERT_FILE
160     fi
161 }
162
163 restart_bacula() {
164     if [ -x "/etc/init.d/bacula-fd" ]; then
165         if [ -x "`which invoke-rc.d 2>/dev/null`" ]; then
166             invoke-rc.d bacula-fd restart || exit $?
167         else
168             /etc/init.d/bacula-fd restart || exit $?
169         fi
170     fi
171 }
172
173 random_string() {
174     head -n 20 /dev/urandom | openssl dgst -sha1 | sed 's/^.* //'
175 }
176
177 send_request() {
178     # cleanup gpg files
179     rm -rf /var/lib/bacula-cn
180
181     if [ -e $REQUEST_FILE ]; then
182         echo Config has not changed, skipping request.
183         return
184     fi
185
186     # report disk sizes
187     DF_FILE=$(mktemp bacula-cn.XXXXXXXXXX)
188     df -h > $DF_FILE
189
190     # report database sizes
191     DB_FILE=$(mktemp bacula-cn.XXXXXXXXXX)
192     if [ -d /var/lib/mysql -o -d /var/lib/postgresql ]; then
193         du -sh /var/lib/mysql /var/lib/postgresql >$DB_FILE 2>/dev/null || true
194     fi
195
196     # generate client config
197     FD_FILE=$(mktemp bacula-cn.XXXXXXXXXX)
198     cat >> $FD_FILE <<EOF
199 # Requested by $CONTACT on $DATE
200 Client {
201   Name = $HOST-fd
202   @/etc/bacula/include/client-debian-default.conf
203   Address = $IP
204   Password = "$PASS_FD"         # password for bacula-fd(8)
205   TLS CA Certificate File = "/etc/bacula/clients.d/$HOST-fd.pem"
206 }
207
208 Console {
209   Name = $HOST-acl
210   @/etc/bacula/include/acl-default.conf
211   Password = "$PASS_BCONSOLE"         # password for bconsole(8)
212   JobACL = $HOST, RestoreFiles
213   ClientACL = $HOST-fd
214 }
215
216 Job {
217   Name = "$HOST"
218   Client = $HOST-fd
219   JobDefs = "Job_TapeBackup"
220   Messages = messages-$HOST
221 }
222
223 Messages {
224   Name = messages-$HOST
225   @/etc/bacula/include/messages-defaults.conf
226   mail = $EMAIL = all, !skipped
227 }
228 EOF
229
230     # client certificate
231     PEM_FILE=$(mktemp bacula-cn.XXXXXXXXXX)
232     sed -n '/BEGIN CERTIFICATE/,/END CERTIFICATE/p' \
233         /etc/bacula/bacula-fd.pem > $PEM_FILE
234
235     # send using web service
236     echo Sending sysbackup request.
237     [ -s $DB_FILE ] && DB_PARAM="-F db=@$DB_FILE;filename=db.txt"
238     if curl --fail --silent --show-error \
239          -F "contact=$CONTACT" \
240          -F "host=$HOST" \
241          -F "ip=$IP" \
242          -F "df=@$DF_FILE;filename=df.txt" \
243          $DB_PARAM \
244          -F "fd=@$FD_FILE;filename=$HOST-fd.conf" \
245          -F "pem=@$PEM_FILE;filename=$HOST-fd.pem" \
246          --cacert /etc/ssl/certs/ca-certificates.crt \
247          https://sysbackup.carnet.hr/bacapp.php >/dev/null
248     then
249         touch $REQUEST_FILE
250     fi
251
252     # cleanup
253     rm -f $DF_FILE $DB_FILE $FD_FILE $PEM_FILE
254
255     # report problems
256     if [ ! -e $REQUEST_FILE ]; then
257         db_input high bacula-cn/request-failed || true
258         db_go || true
259     fi
260 }
261
262 load_config() {
263     db_get bacula-cn/hostname
264     HOST=$RET
265
266     db_get bacula-cn/ip
267     IP=$RET
268
269     db_get bacula-cn/contact
270     CONTACT=$RET
271     EMAIL=${CONTACT#*<}
272     EMAIL=${EMAIL%>*}
273
274     PASS_FD=$( random_string )
275     PASS_BCONSOLE=$( random_string )
276
277     DATE=$( date '+%Y-%m-%d' )
278
279     REQUEST_FILE=/etc/bacula/bacula-fd.txt
280 }
281
282 case "$1" in
283     configure)
284         load_config
285
286         generate_cert
287         generate_dh
288         generate_fd_config
289         generate_bconsole_config
290
291         restart_bacula
292         send_request
293
294         db_stop
295     ;;
296
297     abort-upgrade|abort-remove|abort-deconfigure)
298     ;;
299
300     *)
301         echo "postinst called with unknown argument \`$1'" >&2
302         exit 1
303     ;;
304 esac
305
306 # dh_installdeb will replace this with shell code automatically
307 # generated by other debhelper scripts.
308
309 #DEBHELPER#
310
311 exit 0