]> git.sur5r.net Git - bacula/bacula/blob - bacula/platforms/rpms/suse/bacula.spec.in
e46393da80eb61d277d629ee2fb8501931cd2e44
[bacula/bacula] / bacula / platforms / rpms / suse / bacula.spec.in
1 # Bacula RPM spec file
2 #
3 #
4 # Copyright (C) 2000-2015 Kern Sibbald
5 # License: BSD 2-Clause; see file LICENSE-FOSS
6 #
7
8 # Platform Build Configuration
9
10 # basic defines for every build
11 %define _release           @RELEASE@
12 %define _version           @VERSION@
13 %define product            bacula
14 %define _packager Kern Sibbald <kern@sibbald.com>
15 %define depkgs_version @DEPKGS_VERSION@
16
17 # Don't strip binaries
18 %define __os_install_post %{nil}
19 %define __debug_install_post %{nil}
20 %define debug_package %{nil}
21
22 %define postgres_version 8
23 %define pgre84 0
24 %{?build_rhel5:%define pgre84 1}
25 %{?build_el5:%define pgre84 1}
26 %if %{pgre84}
27 %define postgres_package postgresql84
28 %define postgres_server_package postgresql84-server
29 %define postgres_devel_package postgresql84-devel
30 %else
31 %define postgres_package postgresql
32 %define postgres_server_package postgresql-server
33 %define postgres_devel_package postgresql-devel
34 %endif
35
36 %define single_dir 1
37 %{?single_dir_install:%define single_dir 1}
38
39 # Installation Directory locations
40 %if %{single_dir}
41 %define _prefix        /opt/bacula
42 %define _sbindir       /opt/bacula/bin
43 %define _bindir        /opt/bacula/bin
44 %define _subsysdir     /opt/bacula/working
45 %define sqlite_bindir  /opt/bacula/sqlite
46 %define _mandir        /usr/share/man
47 %define docs_dir       /opt/bacula/docs
48 %define archive_dir    /opt/bacula/archive
49 %define sysconf_dir    /opt/bacula/etc
50 %define script_dir     /opt/bacula/scripts
51 %define working_dir    /opt/bacula/working
52 %define pid_dir        /opt/bacula/working
53 %define plugin_dir     /opt/bacula/plugins
54 %define lib_dir        /opt/bacula/lib
55 %define log_dir        /opt/bacula/log
56 %else
57 %define _prefix        /usr
58 %define _sbindir       %_prefix/sbin
59 %define _bindir        %_prefix/bin
60 %define _subsysdir     /var/lock/subsys
61 %define sqlite_bindir %_libdir/bacula/sqlite
62 %define _mandir        %_prefix/share/man
63 %define sysconf_dir    /etc/bacula
64 %define script_dir     %_libdir/bacula
65 %define working_dir    /var/lib/bacula
66 %define pid_dir        /var/run
67 %define plugin_dir     %_libdir/bacula/plugins
68 %define lib_dir        %_libdir/bacula/lib
69 %define log_dir        %_libdir/bacula/log
70 %endif
71
72 # Daemon user:group Don't change them unless you know what you are doing
73 %define director_daemon_user    bacula
74 %define storage_daemon_user     bacula
75 %define file_daemon_user        root
76 %define daemon_group            bacula
77 # group that has write access to tape devices, usually disk on Linux
78 %define storage_daemon_group    disk
79
80 %define depkgs ../depkgs
81
82 # probems with mandriva build:
83 # nothing provides libbonobo2_0-devel, nothing provides libbonoboui2_0-devel
84
85 #--------------------------------------------------------------------------
86 # it should not be necessary to change anything below here for a release
87 # except for patch macros in the setup section
88 #--------------------------------------------------------------------------
89
90 %define base_package_name %{product}
91
92 %{?contrib_packager:%define _packager %{contrib_packager}}
93
94 Summary: Bacula - The Network Backup Solution
95 Name: %{base_package_name}
96 Version: %{_version}
97 Release: %{_release}
98 Group: System Environment/Daemons
99 License: AGPLv3
100 BuildRoot: %{_tmppath}/%{name}-root
101 URL: http://www.bacula.org/
102 Vendor: The Bacula Team
103 Packager: %{_packager}
104 Prefix: %{_prefix}
105
106 # opensuse build service changes the release itself
107 # what happens if the release is not 1? DSB
108 Source0: http://www.prdownloads.sourceforge.net/bacula/depkgs-%{depkgs_version}.tar.gz
109 Source1: http://www.prdownloads.sourceforge.net/bacula/%{product}-%{version}.tar.gz
110 %if 0%{?opensuse_bs}
111 Source2: Release_Notes-%{version}-1.tar.gz
112 %else
113 Source2: Release_Notes-%{version}-%{release}.tar.gz
114 %endif
115
116 # define the basic package description
117 %define blurb Bacula - The Leading Open Source Backup Solution.
118 %define blurb2 Bacula is a set of computer programs that permit you (or the system
119 %define blurb3 administrator) to manage backup, recovery, and verification of computer
120 %define blurb4 data across a network of computers of different kinds. In technical terms,
121 %define blurb5 it is a network client/server based backup program. Bacula is relatively
122 %define blurb6 easy to use and efficient, while offering many advanced storage management
123 %define blurb7 features that make it easy to find and recover lost or damaged files.
124 %define blurb8 Bacula source code has been released under the AGPL version 3 license.
125
126 %define user_file  /etc/passwd
127 %define group_file /etc/group
128
129 # program locations
130 %define useradd  /usr/sbin/useradd
131 %define groupadd /usr/sbin/groupadd
132 %define usermod  /usr/sbin/usermod
133
134 # platform defines - set one below or define the build_xxx on the command line
135 # RedHat builds
136 %define rh7 0
137 %{?build_rh7:%define rh7 1}
138 %define rh8 0
139 %{?build_rh8:%define rh8 1}
140 %define rh9 0
141 %{?build_rh9:%define rh9 1}
142 # Fedora Core build
143 %define fc16 0
144 %{?build_fc16:%define fc16 1}
145 %define fc17 0
146 %{?build_fc17:%define fc17 1}
147 %define fc18 0
148 %{?build_fc18:%define fc18 1}
149 # Whitebox Enterprise build
150 %define wb3 0
151 %{?build_wb3:%define wb3 1}
152 # RedHat Enterprise builds
153 %define rhel3 0
154 %{?build_rhel3:%define rhel3 1}
155 %{?build_rhel3:%define wb3 1}
156 %define rhel4 0
157 %{?build_rhel4:%define rhel4 1}
158 %{?build_rhel4:%define fc3 1}
159 %{?build_el4:%define rhel4 1}
160 %{?build_el4:%define fc3 1}
161 %define rhel5 0
162 %{?build_rhel5:%define rhel5 1}
163 %{?build_rhel5:%define fc6 1}
164 %{?build_el5:%define rhel5 1}
165 %{?build_el5:%define fc6 1}
166 %define rhel6 0
167 %{?build_rhel6:%define rhel6 1}
168 %{?build_el6:%define rhel6 1}
169 # CentOS build
170 %define centos3 0
171 %{?build_centos3:%define centos3 1}
172 %{?build_centos3:%define wb3 1}
173 %define centos4 0
174 %{?build_centos4:%define centos4 1}
175 %{?build_centos4:%define fc3 1}
176 %define centos5 0
177 %{?build_centos5:%define centos5 1}
178 %{?build_centos5:%define fc6 1}
179 %define centos6 0
180 %{?build_centos6:%define centos6 1}
181 # SL build
182 %define sl3 0
183 %{?build_sl3:%define sl3 1}
184 %{?build_sl3:%define wb3 1}
185 %define sl4 0
186 %{?build_sl4:%define sl4 1}
187 %{?build_sl4:%define fc3 1}
188 %define sl5 0
189 %{?build_sl5:%define sl5 1}
190 %{?build_sl5:%define fc6 1}
191 # SuSE build
192 %define su9 0
193 %{?build_su9:%define su9 1}
194 %define su10 0
195 %{?build_su10:%define su10 1}
196 %define su102 0
197 %{?build_su102:%define su102 1}
198 %define su103 0
199 %{?build_su103:%define su103 1}
200 %define su110 0
201 %{?build_su110:%define su110 1}
202 %define su111 0
203 %{?build_su111:%define su111 1}
204 %define su112 0
205 %{?build_su112:%define su112 1}
206 %define su121 0
207 %{?build_su121:%define su121 1}
208 # Mandrake builds
209 %define mdk 0
210 %{?build_mdk:%define mdk 1}
211 %define mdv 0
212 %{?build_mdv:%define mdv 1}
213 %{?build_mdv:%define mdk 1}
214
215 # client only build
216 %define client_only 0
217 %{?build_client_only:%define client_only 1}
218
219 # Setup some short cuts
220 %define rhat 0
221 %if %{rh7} || %{rh8} || %{rh9}
222 %define rhat 1
223 %endif
224 %define fed 0
225 %if %{fc16} || %{fc17} || %{fc18}
226 %define fed 1
227 %endif
228 %define suse 0
229 %if %{su9} || %{su10} || %{su102} || %{su103} || %{su110} || %{su111} || %{su112} || %{su121}
230 %define suse 1
231 %endif
232 %define rhel 0
233 %if %{rhel3} || %{rhel4} || %{rhel5} || %{rhel6} || %{centos3} || %{centos4} || %{centos5} || %{centos6}
234 %define rhel 1
235 %endif
236 %define scil 0
237 %if %{sl3} || %{sl4} || %{sl5}
238 %define scil 1
239 %endif
240
241
242 # test for a platform definition
243 %if !%{rhat} && !%{rhel} && !%{fed} && !%{wb3} && !%{suse} && !%{mdk} && !%{scil}
244 %{error: You must specify a platform. Please examine the spec file.}
245 exit 1
246 %endif
247
248 # distribution-specific directory for logwatch
249 %if %{wb3} || %{rh7} || %{rh8} || %{rh9}
250 %define logwatch_dir /etc/log.d
251 %else
252 %define logwatch_dir /etc/logwatch
253 %endif
254
255 # database defines
256 # set for database support desired or define the build_xxx on the command line
257 %define mysql 0
258 %{?build_mysql:%define mysql 1}
259 %define sqlite 0
260 %{?build_sqlite:%define sqlite 1}
261 %define postgresql 0
262 %{?build_postgresql:%define postgresql 1}
263
264 # test for a database definition
265 %if ! %{mysql} && ! %{sqlite} && ! %{postgresql} && ! %{client_only}
266 %{error: You must specify database support, by passing one of the following to rpmbuild:}
267 %{error:   --define build_postgresql=1}
268 %{error:   --define build_sqlite=1}
269 %{error:   --define build_mysql=1}
270 exit 1
271 %endif
272
273 %if %{mysql}
274 %define db_backend mysql
275 %endif
276 %if %{sqlite}
277 %define db_backend sqlite3
278 %endif
279 %if %{postgresql}
280 %define db_backend postgresql
281 %endif
282
283 # 64 bit support
284 %define x86_64 0
285 %{?build_x86_64:%define x86_64 1}
286
287 # check what distribution we are
288 %if %{fc16} || %{fc17} || %{fc18}
289 %define _dist %(grep Fedora /etc/redhat-release)
290 %endif
291 %if %{centos5} || %{centos4} || %{centos3}
292 %define _dist %(grep CentOS /etc/redhat-release)
293 %endif
294 %if %{sl5} ||%{sl4} || %{sl3}
295 %define _dist %(grep 'Scientific Linux' /etc/redhat-release)
296 %endif
297 %if %{wb3} && ! %{rhel3} && ! %{centos3} && ! %{sl3}
298 %define _dist %(grep White /etc/whitebox-release)
299 %endif
300 %if %{suse}
301 %define _dist %(grep -i SuSE /etc/SuSE-release)
302 %endif
303 %if %{mdk}
304 %define _dist %(grep Mand /etc/mandrake-release)
305 %endif
306 %if %{rhat} || %{rhel}
307 %define _dist %(grep Red /etc/redhat-release)
308 %endif
309 %{?DISTNAME:%define _dist %{DISTNAME}}
310
311 # only set Disribution if not in opensuse build service, as it sets it itself
312 %if ! 0%{?opensuse_bs}
313 Distribution: %{_dist}
314 %endif
315
316 %if 0%{?opensuse_bs} &&  %{mysql} && %{suse}
317 # needed in opensuse_bs, as rpm is installed during build process
318 BuildRequires: libmysqlclient-devel
319 BuildRequires: mysql-client
320 BuildRequires: mysql
321 %endif
322 %if 0%{?opensuse_bs} &&  %{suse} && %{postgresql}
323 BuildRequires: %{postgres_package}
324 BuildRequires: %{postgres_server_package}
325 %endif
326 BuildRequires: openssl
327
328 %if 0%{?opensuse_bs} && %{suse}
329 BuildRequires: pwdutils
330 BuildRequires: sysconfig
331 %endif
332
333 # should we turn on python support
334 %define python 0
335 %{?build_python:%define python 1}
336
337 # should we enable tcp wrappers support
338 %define tcpwrappers 1
339 %{?build_tcpwrappers:%define tcpwrappers 1}
340
341 # do we need to patch for old postgresql version?
342 %define old_pgsql 0
343 %{?build_old_pgsql:%define old_pgsql 1}
344
345 # Mandriva somehow forces the manpage file extension to bz2 rather than gz
346 %if %{mdk}
347 %define manpage_ext bz2
348 %else
349 %define manpage_ext gz
350 %endif
351
352 # for client only build
353 %if %{client_only}
354 %define mysql 0
355 %define postgresql 0
356 %define sqlite 0
357 %endif
358
359 BuildRequires: gcc, gcc-c++, make, autoconf
360 BuildRequires: glibc, glibc-devel
361 BuildRequires: ncurses-devel, readline-devel
362 BuildRequires: libstdc++-devel, zlib-devel
363 BuildRequires: openssl-devel
364 BuildRequires: libacl-devel
365 BuildRequires: pkgconfig
366 %if ! %{rh7}
367 BuildRequires: libxml2-devel
368 %endif
369 %if %{python}
370 BuildRequires: python, python-devel
371 %{expand: %%define pyver %(python -c 'import sys;print(sys.version[0:3])')}
372 %endif
373
374 %if %{rh7}
375 BuildRequires: libxml-devel
376 %endif
377 %if %{mdk}
378 BuildRequires: libstdc++-static-devel
379 BuildRequires: glibc-static-devel
380 %endif
381
382 %if %{mysql} && ! %{suse}
383 BuildRequires: mysql-devel
384 %endif
385
386 %if %{postgresql} && %{wb3}
387 BuildRequires: rh-postgresql-devel >= %{postgres_version}
388 %endif
389
390 %if %{postgresql} && ! %{wb3}
391 BuildRequires: %{postgres_devel_package} >= %{postgres_version}
392 %endif
393
394 %description
395 %{blurb}
396
397 %{blurb2}
398 %{blurb3}
399 %{blurb4}
400 %{blurb5}
401 %{blurb6}
402 %{blurb7}
403 %{blurb8}
404
405 %if %{mysql}
406 %package mysql
407 %endif
408 %if %{sqlite}
409 %package sqlite
410 %endif
411 %if %{postgresql}
412 %package postgresql
413 %endif
414
415 Summary: Bacula - The Network Backup Solution
416 Group: System Environment/Daemons
417 Provides: bacula-dir, bacula-sd, bacula-fd, bacula-server
418 Conflicts: bacula-client
419
420 Requires: ncurses, libstdc++, zlib, openssl
421 Requires: glibc, readline, %{name}-libs
422
423 %if %{suse}
424 Conflicts: bacula
425 %endif
426
427 %if %{mysql}
428 Requires: mysql
429 %endif
430
431 %if %{postgresql} && %{wb3}
432 Requires: rh-postgresql >= 7
433 %endif
434 %if %{postgresql} && ! %{wb3}
435 Requires: postgresql >= 7
436 %endif
437
438 %if %{mysql}
439 %description mysql
440 %endif
441 %if %{sqlite}
442 %description sqlite
443 %endif
444 %if %{postgresql}
445 %description postgresql
446 %endif
447
448 %if %{python}
449 Requires: python >= %{pyver}
450 %endif
451
452 %{blurb}
453
454 %{blurb2}
455 %{blurb3}
456 %{blurb4}
457 %{blurb5}
458 %{blurb6}
459 %{blurb7}
460 %{blurb8}
461
462 %if %{mysql}
463 This build requires MySQL to be installed separately as the catalog database.
464 %endif
465 %if %{postgresql}
466 This build requires PostgreSQL to be installed separately as the catalog database.
467 %endif
468 %if %{sqlite}
469 This build incorporates sqlite3 as the catalog database, statically compiled.
470 %endif
471 %if %{python}
472 This build includes python scripting support.
473 %endif
474 %if %{tcpwrappers}
475 This build includes tcp-wrappers support.
476 %endif
477
478 %package client
479 Summary: Bacula - The Network Backup Solution
480 Group: System Environment/Daemons
481 Provides: bacula-fd
482 Conflicts: bacula-mysql
483 Conflicts: bacula-sqlite
484 Conflicts: bacula-postgresql
485
486 %if %{suse}
487 Provides: %{product}
488 Provides: %{product}-libs
489 %endif
490
491 Requires: libstdc++, zlib, openssl
492 Requires: glibc, readline, %{name}-libs
493
494 %if %{python}
495 Requires: python >= %{pyver}
496 %endif
497
498 %description client
499 %{blurb}
500
501 %{blurb2}
502 %{blurb3}
503 %{blurb4}
504 %{blurb5}
505 %{blurb6}
506 %{blurb7}
507 %{blurb8}
508
509 This is the File daemon (Client) only package. It includes the command line
510 console program.
511 %if %{python}
512 This build includes python scripting support.
513 %endif
514 %if %{tcpwrappers}
515 This build includes tcp-wrappers support.
516 %endif
517
518 %if ! %{client_only}
519 %package updatedb
520
521 Summary: Bacula - The Network Backup Solution
522 Group: System Environment/Daemons
523
524 %description updatedb
525 %{blurb}
526
527 %{blurb2}
528 %{blurb3}
529 %{blurb4}
530 %{blurb5}
531 %{blurb6}
532 %{blurb7}
533 %{blurb8}
534
535 This package installs scripts for updating older versions of the bacula
536 database.
537 %endif
538
539 %package libs
540
541 Summary: Bacula - The Network Backup Solution
542 Group: System Environment/Daemons
543
544 %description libs
545 %{blurb}
546
547 %{blurb2}
548 %{blurb3}
549 %{blurb4}
550 %{blurb5}
551 %{blurb6}
552 %{blurb7}
553 %{blurb8}
554
555 This package installs the shared libraries used by many bacula programs.
556
557 # Must explicitly enable debug pkg on SuSE
558 # but not in opensuse_bs
559 #%if %{suse} && ! 0%{?opensuse_bs}
560 #%debug_package
561 #%endif
562
563 %prep
564 %setup -T    -b 0 -n depkgs
565 %setup -T    -b 1 -n %{product}-%{version}
566 %setup -T -D -b 2 -n %{product}-%{version}
567 # extract depkgs
568
569
570 %build
571
572 %if %{suse}
573 #export LDFLAGS="${LDFLAGS} -L/usr/lib/termcap -L/usr/lib64/termcap"
574 %endif
575
576 # You can use a cache for depkgs
577 # tar xfz depkgs*gz -C ~/
578 # cd ~/depkgs
579 # touch %{depkgs_version}       # depkgs version
580
581 if [ -f $HOME/depkgs/%{depkgs_version} ]; then
582    rm -rf %{depkgs}
583    ln -s $HOME/depkgs %{depkgs}
584 fi
585
586 cwd=${PWD}
587 %if %{sqlite}
588 cd %{depkgs}
589 make sqlite3
590 cd ${cwd}
591 %endif
592
593 cd %{depkgs}
594 make lzo
595 export LDFLAGS="${LDFLAGS} -L${PWD}/lzo/lib"
596 export CPPFLAGS="${CPPFLAGS} -I${PWD}/lzo/include"
597 cd ${cwd}
598
599 # hostname is the build hostname, so use XXX_HOSTNAME_XXX for Address parameter
600 sed -i s/hostname/basename/ src/console/bconsole.conf.in src/dird/bacula-dir.conf.in src/qt-console/bat.conf.in
601
602 %if %{sqlite}
603 # patches for the bundled sqlite scripts
604 sed -i s:.SQLITE_BINDIR.:/opt/bacula/sqlite: src/cats/*_sqlite3_*.in
605
606 # patch the bacula-dir init script to remove sqlite service
607 %if %{suse}
608 sed -i 's/network .DB_TYPE./network/' platforms/suse/bacula-dir.in
609 %endif
610 %endif
611
612 # 64 bit lib location hacks
613 # as of 1.39.18 it should not be necessary to enable x86_64 as configure is
614 # reported to be fixed to properly detect lib locations.
615 %if %{x86_64}
616 export LDFLAGS="${LDFLAGS} -L/usr/lib64"
617 %endif
618 %if %{mysql} && %{x86_64}
619 export LDFLAGS="${LDFLAGS} -L/usr/lib64/mysql"
620 %endif
621 %if %{python} && %{x86_64}
622 export LDFLAGS="${LDFLAGS} -L/usr/lib64/python%{pyver}"
623 %endif
624
625 export BACULA="Bacula"
626
627 # Main Bacula configuration
628 %configure \
629         --prefix=%{_prefix} \
630         --sbindir=%{_sbindir} \
631         --sysconfdir=%{sysconf_dir} \
632         --mandir=%{_mandir} \
633         --with-scriptdir=%{script_dir} \
634         --with-working-dir=%{working_dir} \
635         --with-plugindir=%{plugin_dir} \
636         --with-logdir=%{log_dir} \
637         --with-pid-dir=%{pid_dir} \
638         --with-subsys-dir=%{_subsysdir} \
639         --enable-smartalloc \
640         --disable-bwx-console \
641         --disable-tray-monitor \
642         --disable-conio \
643         --enable-readline \
644 %if %{mysql}
645         --with-mysql \
646 %endif
647 %if %{sqlite}
648         --with-sqlite3=${cwd}/%{depkgs}/sqlite3 \
649 %endif
650 %if %{postgresql}
651         --with-postgresql \
652 %endif
653         --disable-bat \
654 %if %{python}
655         --with-python \
656 %endif
657 %if %{client_only}
658         --enable-client-only \
659 %endif
660 %if %{rh7} || %{rh8} || %{rh9}
661         --disable-batch-insert \
662 %endif
663         --with-tcp-wrappers  \
664         --with-dir-user=%{director_daemon_user} \
665         --with-dir-group=%{daemon_group} \
666         --with-sd-user=%{storage_daemon_user} \
667         --with-sd-group=%{storage_daemon_group} \
668         --with-fd-user=%{file_daemon_user} \
669         --with-fd-group=%{daemon_group} \
670         --with-basename="XXX_HOSTNAME_XXX" \
671         --with-hostname="XXX_HOSTNAME_XXX" \
672         --with-dir-password="XXX_REPLACE_WITH_DIRECTOR_PASSWORD_XXX" \
673         --with-fd-password="XXX_REPLACE_WITH_CLIENT_PASSWORD_XXX" \
674         --with-sd-password="XXX_REPLACE_WITH_STORAGE_PASSWORD_XXX" \
675         --with-mon-dir-password="XXX_REPLACE_WITH_DIRECTOR_MONITOR_PASSWORD_XXX" \
676         --with-mon-fd-password="XXX_REPLACE_WITH_CLIENT_MONITOR_PASSWORD_XXX" \
677         --with-mon-sd-password="XXX_REPLACE_WITH_STORAGE_MONITOR_PASSWORD_XXX" \
678         --with-openssl
679
680 make -j3
681
682 %install
683
684 cwd=${PWD}
685 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT"
686 mkdir -p $RPM_BUILD_ROOT/etc/init.d
687 mkdir -p $RPM_BUILD_ROOT/etc/logrotate.d
688 mkdir -p $RPM_BUILD_ROOT%{logwatch_dir}/conf/logfiles
689 mkdir -p $RPM_BUILD_ROOT%{logwatch_dir}/conf/services
690 mkdir -p $RPM_BUILD_ROOT%{logwatch_dir}/scripts/services
691 mkdir -p $RPM_BUILD_ROOT%{logwatch_dir}/scripts/shared
692 mkdir -p $RPM_BUILD_ROOT%{script_dir}/updatedb
693
694 mkdir -p $RPM_BUILD_ROOT/etc/pam.d
695 mkdir -p $RPM_BUILD_ROOT%{_sbindir}
696
697 %if %{sqlite}
698 mkdir -p $RPM_BUILD_ROOT%{sqlite_bindir}
699 %endif
700
701 make DESTDIR=$RPM_BUILD_ROOT install
702
703 # Remove docs for programs that are depreciated
704 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/bacula-bgnome-console.1.%{manpage_ext}
705 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/bacula-bwxconsole.1.%{manpage_ext}
706 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/bacula-tray-monitor.1.%{manpage_ext}
707 rm -f $RPM_BUILD_ROOT%{script_dir}/gconsole
708
709 # Storage-ctl packaged in shstore rpm
710 rm -f $RPM_BUILD_ROOT%{script_dir}/storage-ctl
711 rm -f $RPM_BUILD_ROOT%{script_dir}/storage-ctl.conf
712
713 # Remove libtool unneeded file
714 rm -f $RPM_BUILD_ROOT%{_libdir}/libbacsd.la
715
716 # fixme - make installs the mysql scripts for sqlite build
717 %if %{sqlite}
718 rm -f $RPM_BUILD_ROOT%{script_dir}/startmysql
719 rm -f $RPM_BUILD_ROOT%{script_dir}/stopmysql
720 rm -f $RPM_BUILD_ROOT%{script_dir}/grant_mysql_privileges
721 %endif
722
723 # fixme - make installs the mysql scripts for postgresql build
724 %if %{postgresql}
725 rm -f $RPM_BUILD_ROOT%{script_dir}/startmysql
726 rm -f $RPM_BUILD_ROOT%{script_dir}/stopmysql
727 %endif
728
729 # install the init scripts
730 %if %{suse}
731 cp -p platforms/suse/bacula-dir $RPM_BUILD_ROOT/etc/init.d/bacula-dir
732 cp -p platforms/suse/bacula-fd $RPM_BUILD_ROOT/etc/init.d/bacula-fd
733 cp -p platforms/suse/bacula-sd $RPM_BUILD_ROOT/etc/init.d/bacula-sd
734 %endif
735 %if %{mdk}
736 cp -p platforms/mandrake/bacula-dir $RPM_BUILD_ROOT/etc/init.d/bacula-dir
737 cp -p platforms/mandrake/bacula-fd $RPM_BUILD_ROOT/etc/init.d/bacula-fd
738 cp -p platforms/mandrake/bacula-sd $RPM_BUILD_ROOT/etc/init.d/bacula-sd
739 %endif
740 %if ! %{suse} && ! %{mdk}
741 cp -p platforms/redhat/bacula-dir $RPM_BUILD_ROOT/etc/init.d/bacula-dir
742 cp -p platforms/redhat/bacula-fd $RPM_BUILD_ROOT/etc/init.d/bacula-fd
743 cp -p platforms/redhat/bacula-sd $RPM_BUILD_ROOT/etc/init.d/bacula-sd
744 %endif
745 chmod 0754 $RPM_BUILD_ROOT/etc/init.d/*
746 %if %{client_only}
747 rm -f $RPM_BUILD_ROOT/etc/init.d/bacula-dir
748 rm -f $RPM_BUILD_ROOT/etc/init.d/bacula-sd
749 %endif
750
751 # install sqlite
752 %if %{sqlite}
753 cp -p %{depkgs}/sqlite3/sqlite3 $RPM_BUILD_ROOT%{sqlite_bindir}/sqlite3
754 cp -p %{depkgs}/sqlite3/sqlite3.h $RPM_BUILD_ROOT%{sqlite_bindir}/sqlite3.h
755 cp -p %{depkgs}/sqlite3/libsqlite3.a $RPM_BUILD_ROOT%{sqlite_bindir}/libsqlite3.a
756 %endif
757
758
759 # install the logrotate file
760 cp -p scripts/logrotate $RPM_BUILD_ROOT/etc/logrotate.d/bacula
761
762 # install the updatedb scripts
763 cp -p updatedb/* $RPM_BUILD_ROOT%{script_dir}/updatedb/
764
765 # install specific scripts
766
767 %if ! %{client_only}
768 # install the sample-query.sql file
769 cp -p examples/sample-query.sql $RPM_BUILD_ROOT%{script_dir}/sample-query.sql
770
771 # install the logwatch scripts
772 cp -p scripts/logwatch/bacula $RPM_BUILD_ROOT%{logwatch_dir}/scripts/services/bacula
773 cp -p scripts/logwatch/applybaculadate $RPM_BUILD_ROOT%{logwatch_dir}/scripts/shared/applybaculadate
774 cp -p scripts/logwatch/logfile.bacula.conf $RPM_BUILD_ROOT%{logwatch_dir}/conf/logfiles/bacula.conf
775 cp -p scripts/logwatch/services.bacula.conf $RPM_BUILD_ROOT%{logwatch_dir}/conf/services/bacula.conf
776 chmod 755 $RPM_BUILD_ROOT%{logwatch_dir}/scripts/services/bacula
777 chmod 755 $RPM_BUILD_ROOT%{logwatch_dir}/scripts/shared/applybaculadate
778 chmod 644 $RPM_BUILD_ROOT%{logwatch_dir}/conf/logfiles/bacula.conf
779 chmod 644 $RPM_BUILD_ROOT%{logwatch_dir}/conf/services/bacula.conf
780 %endif
781
782 # now clean up permissions that are left broken by the install
783 chmod o-rwx $RPM_BUILD_ROOT%{working_dir}
784
785 # fix me - building enable-client-only installs files not included in bacula-client package
786 %if %{client_only}
787 # Program docs not installed on client
788 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/bacula-dir.8.%{manpage_ext}
789 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/bacula-sd.8.%{manpage_ext}
790 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/bcopy.8.%{manpage_ext}
791 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/bextract.8.%{manpage_ext}
792 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/bls.8.%{manpage_ext}
793 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/bscan.8.%{manpage_ext}
794 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/btape.8.%{manpage_ext}
795 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/dbcheck.8.%{manpage_ext}
796 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/bregex.8.%{manpage_ext}
797 rm -f $RPM_BUILD_ROOT%{_mandir}/man8/bwild.8.%{manpage_ext}
798 rm -f $RPM_BUILD_ROOT%{_mandir}/man1/bsmtp.1.%{manpage_ext}
799
800 rm -f $RPM_BUILD_ROOT%{script_dir}/bacula
801 rm -f $RPM_BUILD_ROOT%{script_dir}/bacula_config
802 rm -f $RPM_BUILD_ROOT%{script_dir}/bacula-ctl-dir
803 rm -f $RPM_BUILD_ROOT%{script_dir}/bacula-ctl-sd
804 rm -f $RPM_BUILD_ROOT%{script_dir}/disk-changer
805 rm -f $RPM_BUILD_ROOT%{script_dir}/dvd-handler
806 rm -f $RPM_BUILD_ROOT%{script_dir}/mtx-changer
807 rm -f $RPM_BUILD_ROOT%{script_dir}/startmysql
808 rm -f $RPM_BUILD_ROOT%{script_dir}/stopmysql
809 rm -rf $RPM_BUILD_ROOT%{script_dir}/updatedb
810 rm -f $RPM_BUILD_ROOT%{script_dir}/bconsole
811 rm -f $RPM_BUILD_ROOT%{script_dir}/mtx-changer.conf
812 rm -f $RPM_BUILD_ROOT%{_sbindir}/bacula
813 %endif
814
815 %clean
816 [ "$RPM_BUILD_ROOT" != "/" ] && rm -rf "$RPM_BUILD_ROOT"
817 %if 0%{?opensuse_bs}
818 rm -f $RPM_BUILD_DIR/Release_Notes-%{version}-1.txt
819 %else
820 rm -f $RPM_BUILD_DIR/Release_Notes-%{version}-%{release}.txt
821 %endif
822
823
824 %if %{mysql}
825 # MySQL specific files
826 %files mysql
827 %defattr(-, root, root)
828 %attr(-, root, %{daemon_group}) %{script_dir}/create_mysql_database
829 %attr(-, root, %{daemon_group}) %{script_dir}/drop_mysql_database
830 %attr(-, root, %{daemon_group}) %{script_dir}/make_mysql_tables
831 %attr(-, root, %{daemon_group}) %{script_dir}/drop_mysql_tables
832 %attr(-, root, %{daemon_group}) %{script_dir}/update_mysql_tables
833 %attr(-, root, %{daemon_group}) %{script_dir}/grant_mysql_privileges
834 %{_libdir}/libbaccats*
835 %{_libdir}/libbacsql*
836 %{_libdir}/libbacsd*.so
837 %endif
838
839 %if %{sqlite}
840 %files sqlite
841 %defattr(-,root,root)
842 %attr(-, root, %{daemon_group}) %{script_dir}/create_sqlite3_database
843 %attr(-, root, %{daemon_group}) %{script_dir}/drop_sqlite3_database
844 %attr(-, root, %{daemon_group}) %{script_dir}/grant_sqlite3_privileges
845 %attr(-, root, %{daemon_group}) %{script_dir}/make_sqlite3_tables
846 %attr(-, root, %{daemon_group}) %{script_dir}/drop_sqlite3_tables
847 %attr(-, root, %{daemon_group}) %{script_dir}/update_sqlite3_tables
848 %{sqlite_bindir}/libsqlite3.a
849 %{sqlite_bindir}/sqlite3.h
850 %{sqlite_bindir}/sqlite3
851 %{_libdir}/libbaccats*
852 %{_libdir}/libbacsql*
853 %{_libdir}/libbacsd*.so
854 %endif
855
856
857
858 %if %{postgresql}
859 %files postgresql
860 %defattr(-,root,root)
861 %attr(755, root, %{daemon_group}) %{script_dir}/create_postgresql_database
862 %attr(755, root, %{daemon_group}) %{script_dir}/drop_postgresql_database
863 %attr(755, root, %{daemon_group}) %{script_dir}/make_postgresql_tables
864 %attr(755, root, %{daemon_group}) %{script_dir}/drop_postgresql_tables
865 %attr(755, root, %{daemon_group}) %{script_dir}/update_postgresql_tables
866 %attr(755, root, %{daemon_group}) %{script_dir}/grant_postgresql_privileges
867 %{_libdir}/libbaccats*
868 %{_libdir}/libbacsql*
869 %endif
870
871 # The rest is DB backend independent
872
873 %if ! %{client_only}
874 %attr(-, root, %{daemon_group}) %dir %{script_dir}
875 %attr(-, root, %{daemon_group}) %dir %{sysconf_dir}
876 #%attr(-, %{director_daemon_user}, %{daemon_group}) %dir %{log_dir}
877 %attr(-, root, %{daemon_group}) %{script_dir}/bacula
878 %attr(-, root, %{daemon_group}) %{script_dir}/bacula_config
879 %attr(-, root, %{daemon_group}) %{script_dir}/bconsole
880 %attr(-, root, %{daemon_group}) %{script_dir}/create_bacula_database
881 %attr(755, root, %{daemon_group}) %{script_dir}/drop_bacula_database
882 %attr(755, root, %{daemon_group}) %{script_dir}/grant_bacula_privileges
883 %attr(755, root, %{daemon_group}) %{script_dir}/make_bacula_tables
884 %attr(755, root, %{daemon_group}) %{script_dir}/drop_bacula_tables
885 %attr(755, root, %{daemon_group}) %{script_dir}/update_bacula_tables
886 %attr(-, root, %{daemon_group}) %{script_dir}/make_catalog_backup
887 %attr(-, root, %{daemon_group}) %{script_dir}/make_catalog_backup.pl
888 %attr(-, root, %{daemon_group}) %{script_dir}/delete_catalog_backup
889 %attr(-, root, %{daemon_group}) %{script_dir}/btraceback.dbx
890 %attr(-, root, %{daemon_group}) %{script_dir}/btraceback.gdb
891 %attr(-, root, %{daemon_group}) %{script_dir}/btraceback.mdb
892 %attr(-, root, %{daemon_group}) %{script_dir}/disk-changer
893 %attr(-, root, %{daemon_group}) %{script_dir}/bacula-ctl-dir
894 %attr(-, root, %{daemon_group}) %{script_dir}/bacula-ctl-fd
895 %attr(-, root, %{daemon_group}) %{script_dir}/bacula-ctl-sd
896 %attr(-, root, %{daemon_group}) %{script_dir}/tapealert
897
898 %attr(-, root, %{daemon_group}) %{plugin_dir}/bpipe-fd.so
899
900 %attr(-, root, %{daemon_group}) /etc/init.d/bacula-dir
901 %attr(-, root, %{daemon_group}) /etc/init.d/bacula-fd
902
903 %attr(-, root, %{daemon_group}) %{_sbindir}/dbcheck
904 %attr(-, root, %{storage_daemon_group}) /etc/init.d/bacula-sd
905 %attr(-, root, %{storage_daemon_group}) %{script_dir}/mtx-changer
906 %attr(-, root, %{storage_daemon_group}) %config(noreplace) %{script_dir}/mtx-changer.conf
907
908 /etc/logrotate.d/bacula
909 %{logwatch_dir}/scripts/services/bacula
910 %{logwatch_dir}/scripts/shared/applybaculadate
911 %attr(-, root, %{daemon_group}) %config(noreplace) %{sysconf_dir}/bacula-dir.conf
912 %attr(-, root, %{daemon_group}) %config(noreplace) %{sysconf_dir}/bacula-fd.conf
913 %attr(-, root, %{storage_daemon_group}) %config(noreplace) %{sysconf_dir}/bacula-sd.conf
914 %attr(-, root, %{daemon_group}) %config(noreplace) %{sysconf_dir}/bconsole.conf
915 %attr(-, root, %{daemon_group}) %config(noreplace) %{logwatch_dir}/conf/logfiles/bacula.conf
916 %attr(-, root, %{daemon_group}) %config(noreplace) %{logwatch_dir}/conf/services/bacula.conf
917 %attr(-, root, %{daemon_group}) %{script_dir}/sample-query.sql
918
919 # Bacula tray-monitor shortcut
920 %attr(-, root, %{daemon_group}) %{script_dir}/bacula-tray-monitor.desktop
921
922 %attr(-, %{storage_daemon_user}, %{daemon_group}) %dir %{working_dir}
923
924 %attr(-, root, %{daemon_group}) %{_sbindir}/bacula-dir
925 %attr(-, root, %{daemon_group}) %{_sbindir}/bacula-sd
926 %attr(-, root, %{daemon_group}) %{_sbindir}/btraceback
927 %attr(-, root, %{daemon_group}) %{_sbindir}/bconsole
928 %attr(-, root, %{daemon_group}) %{_sbindir}/bsmtp
929 %attr(-, root, %{daemon_group}) %{_sbindir}/bscan
930 %attr(-, root, %{daemon_group}) %{_sbindir}/btape
931 %attr(-, root, %{daemon_group}) %{_sbindir}/bbconsjson
932 %attr(-, root, %{daemon_group}) %{_sbindir}/bdirjson
933 %attr(-, root, %{daemon_group}) %{_sbindir}/bsdjson
934
935 %attr(755, root, %{daemon_group}) %{_sbindir}/bfdjson
936
937 %{_sbindir}/bacula-fd
938 %{_sbindir}/bacula
939 %{_sbindir}/bcopy
940 %{_sbindir}/bextract
941 %{_sbindir}/bls
942 %{_sbindir}/bregex
943 %{_sbindir}/bwild
944 %{_mandir}/man8/bacula-fd.8.%{manpage_ext}
945 %{_mandir}/man8/bacula-dir.8.%{manpage_ext}
946 %{_mandir}/man8/bacula-sd.8.%{manpage_ext}
947 %{_mandir}/man8/bacula.8.%{manpage_ext}
948 %{_mandir}/man8/bconsole.8.%{manpage_ext}
949 %{_mandir}/man8/bcopy.8.%{manpage_ext}
950 %{_mandir}/man8/bextract.8.%{manpage_ext}
951 %{_mandir}/man8/bls.8.%{manpage_ext}
952 %{_mandir}/man8/bscan.8.%{manpage_ext}
953 %{_mandir}/man8/btape.8.%{manpage_ext}
954 %{_mandir}/man8/btraceback.8.%{manpage_ext}
955 %{_mandir}/man8/dbcheck.8.%{manpage_ext}
956 %{_mandir}/man8/bregex.8.%{manpage_ext}
957 %{_mandir}/man8/bwild.8.%{manpage_ext}
958 %{_mandir}/man1/bsmtp.1.%{manpage_ext}
959 %{_mandir}/man1/bat.1.%{manpage_ext}
960 %_prefix/share/doc/*
961
962 # opensuse build service changes the release itself
963 %if 0%{?opensuse_bs}
964 %doc ../Release_Notes-%{version}-1.txt
965 %else
966 %doc ../Release_Notes-%{version}-%{release}.txt
967 %endif
968 %endif
969
970 %if %{mysql}
971 %pre mysql
972 # test for bacula database older than version 13
973 # note: this ASSUMES no password has been set for bacula database
974 DB_VER=`mysql 2>/dev/null bacula -e 'select * from Version;'|tail -n 1`
975 %endif
976
977 %if %{sqlite}
978 %pre sqlite
979 # are we upgrading from sqlite to sqlite3?
980 if [ -s %{working_dir}/bacula.db ] && [ -s %{sqlite_bindir}/sqlite ];then
981         echo "This version of bacula-sqlite involves an upgrade to sqlite3."
982         echo "Your catalog database file is not compatible with sqlite3, thus"
983         echo "you will need to dump the data, delete the old file, and re-run"
984         echo "this rpm upgrade."
985         echo ""
986         echo "Backing up your current database..."
987         echo ".dump" | %{sqlite_bindir}/sqlite %{working_dir}/bacula.db > %{working_dir}/bacula_backup.sql
988         mv %{working_dir}/bacula.db %{working_dir}/bacula.db.old
989         echo "Your catalog data has been saved in %{working_dir}/bacula_backup.sql and your"
990         echo "catalog file has been renamed %{working_dir}/bacula.db.old."
991         echo ""
992         echo "Please re-run this rpm package upgrade."
993         echo "After the upgrade is complete, restore your catalog"
994         echo "with the following commands:"
995         echo "%{script_dir}/drop_sqlite3_tables"
996         echo "cd %{working_dir}"
997         echo "%{sqlite_bindir}/sqlite3 $* bacula.db < bacula_backup.sql"
998         echo "chown bacula.bacula bacula.db"
999         exit 1
1000 fi
1001 # test for bacula database older than version 12 and sqlite3
1002 if [ -s %{working_dir}/bacula.db ] && [ -s %{sqlite_bindir}/sqlite3 ];then
1003         DB_VER=`echo "select * from Version;" | %{sqlite_bindir}/sqlite3 2>/dev/null %{working_dir}/bacula.db | tail -n 1`
1004 %endif
1005
1006 %if %{postgresql}
1007 %pre postgresql
1008 DB_VER=`echo 'SELECT * FROM Version LIMIT 1;' | su - postgres -c 'psql bacula' 2>/dev/null | tail -3 | head -1`
1009 %endif
1010
1011 %if ! %{client_only}
1012 if [ -n "$DB_VER" ] && [ "$DB_VER" -lt "12" ]; then
1013     echo "This bacula upgrade will update a bacula database from version 12 to 1014."
1014     echo "You appear to be running database version $DB_VER. You must first update"
1015     echo "your database to version 12 and then install this upgrade. The alternative"
1016     echo "is to use %{script_dir}/drop_%{db_backend}_tables to delete all your your current"
1017     echo "catalog information, then do the upgrade. Information on updating a"
1018     echo "database older than version 12 can be found in the release notes."
1019     exit 1
1020 fi
1021 %endif
1022
1023 %if %{sqlite}
1024 fi
1025 %endif
1026
1027 %if ! %{client_only}
1028 # check for and copy %{sysconf_dir}/console.conf to bconsole.conf
1029 if [ -s %{sysconf_dir}/console.conf ];then
1030     cp -p %{sysconf_dir}/console.conf %{sysconf_dir}/bconsole.conf
1031 fi
1032
1033 # create the daemon users and groups
1034 # first create the groups if they don't exist
1035 HAVE_BACULA=`grep %{daemon_group} %{group_file} 2>/dev/null`
1036 if [ -z "$HAVE_BACULA" ]; then
1037         %{groupadd} -r %{daemon_group} > /dev/null 2>&1
1038         echo "The group %{daemon_group} has been added to %{group_file}."
1039         echo "See the manual chapter \"Running Bacula\" for details."
1040 fi
1041 HAVE_BACULA=`grep %{storage_daemon_group} %{group_file} 2>/dev/null`
1042 if [ -z "$HAVE_BACULA" ]; then
1043         %{groupadd} -r %{storage_daemon_group} > /dev/null 2>&1
1044         echo "The group %{storage_daemon_group} has been added to %{group_file}."
1045         echo "See the manual chapter \"Running Bacula\" for details."
1046 fi
1047 # now create the users if they do not exist
1048 # we do not use the -g option allowing the primary group to be set to system default
1049 # this will be a unique group on redhat type systems or the group users on some systems
1050 HAVE_BACULA=`grep %{storage_daemon_user} %{user_file} 2>/dev/null`
1051 if [ -z "$HAVE_BACULA" ]; then
1052         %{useradd} -r -c "Bacula" -d %{working_dir} -g %{storage_daemon_group} -M -s /sbin/nologin %{storage_daemon_user} > /dev/null 2>&1
1053         echo "The user %{storage_daemon_user} has been added to %{user_file}."
1054         echo "See the manual chapter \"Running Bacula\" for details."
1055 fi
1056 HAVE_BACULA=`grep %{director_daemon_user} %{user_file} 2>/dev/null`
1057 if [ -z "$HAVE_BACULA" ]; then
1058         %{useradd} -r -c "Bacula" -d %{working_dir} -g %{daemon_group} -M -s /sbin/nologin %{director_daemon_user} > /dev/null 2>&1
1059         echo "The user %{director_daemon_user} has been added to %{user_file}."
1060         echo "See the manual chapter \"Running Bacula\" for details."
1061 fi
1062 HAVE_BACULA=`grep %{file_daemon_user} %{user_file} 2>/dev/null`
1063 if [ -z "$HAVE_BACULA" ]; then
1064         %{useradd} -r -c "Bacula" -d %{working_dir} -g %{daemon_group} -M -s /sbin/nologin %{file_daemon_user} > /dev/null 2>&1
1065         echo "The user %{file_daemon_user} has been added to %{user_file}."
1066         echo "See the manual chapter \"Running Bacula\" for details."
1067 fi
1068 # now we add the supplementary groups, this is ok to call even if the users already exist
1069 # we only do this if the user is NOT root
1070 IS_ROOT=%{director_daemon_user}
1071 if [ "$IS_ROOT" != "root" ]; then
1072 %{usermod} -G %{daemon_group} %{director_daemon_user}
1073 fi
1074 IS_ROOT=%{storage_daemon_user}
1075 if [ "$IS_ROOT" != "root" ]; then
1076 %{usermod} -G %{daemon_group},%{storage_daemon_group} %{storage_daemon_user}
1077 fi
1078 IS_ROOT=%{file_daemon_user}
1079 if [ "$IS_ROOT" != "root" ]; then
1080 %{usermod} -G %{daemon_group} %{file_daemon_user}
1081 fi
1082 %endif
1083
1084 %if %{mysql}
1085 %post mysql
1086 %endif
1087 %if %{sqlite}
1088 %post sqlite
1089 %endif
1090 %if %{postgresql}
1091 %post postgresql
1092 %endif
1093 %if ! %{client_only}
1094 # add our links
1095 if [ "$1" -ge 1 ] ; then
1096 %if %{suse} && %{mysql}
1097   /sbin/chkconfig --add mysql
1098 %endif
1099 %if %{suse} && %{postgresql}
1100   /sbin/chkconfig --add postgresql
1101 %endif
1102   /sbin/chkconfig --add bacula-dir
1103   /sbin/chkconfig --add bacula-fd
1104   /sbin/chkconfig --add bacula-sd
1105 fi
1106 %endif
1107
1108 if [ -d %{sysconf_dir} ]; then
1109    cd %{sysconf_dir}
1110    if [ ! -f .rpm.sed ]; then
1111        (umask 0177
1112         echo "# This file is used to ensure that all passwords will" > .rpm.sed
1113         echo "# match between configuration files"                  >> .rpm.sed
1114        )
1115        for string in XXX_REPLACE_WITH_DIRECTOR_PASSWORD_XXX XXX_REPLACE_WITH_CLIENT_PASSWORD_XXX XXX_REPLACE_WITH_STORAGE_PASSWORD_XXX XXX_REPLACE_WITH_DIRECTOR_MONITOR_PASSWORD_XXX XXX_REPLACE_WITH_CLIENT_MONITOR_PASSWORD_XXX XXX_REPLACE_WITH_STORAGE_MONITOR_PASSWORD_XXX; do
1116            pass=`openssl rand -base64 33`
1117            echo "s@${string}@${pass}@g" >> .rpm.sed
1118        done
1119    fi
1120    host=`hostname -s`
1121    for file in *.conf; do
1122       sed -f .rpm.sed $file > $file.new
1123       sed "s@XXX_HOSTNAME_XXX@${host}@g" $file.new > $file
1124       rm -f $file.new
1125    done
1126 fi
1127
1128
1129 %if %{mysql}
1130
1131 #check, if mysql can be called successfully at all
1132 if mysql 2>/dev/null bacula -e 'select * from Version;' ; then
1133
1134   # test for an existing database
1135   # note: this ASSUMES no password has been set for bacula database
1136   DB_VER=`mysql 2>/dev/null bacula -e 'select * from Version;'|tail -n 1`
1137
1138   # grant privileges and create tables if they do not exist
1139   if [ -z "$DB_VER" ]; then
1140       echo "Hmm, it doesn't look like you have an existing database."
1141       echo "Granting privileges for MySQL user bacula..."
1142       %{script_dir}/grant_mysql_privileges
1143       echo "Creating MySQL bacula database..."
1144       %{script_dir}/create_mysql_database
1145       echo "Creating bacula tables..."
1146       %{script_dir}/make_mysql_tables
1147
1148   elif [ "$DB_VER" -ge "12" -a "$DB_VER" -lt "1015" ]; then
1149       echo "This release requires an upgrade to your bacula database."
1150       echo "Backing up your current database..."
1151       mysqldump -f --opt bacula | bzip2 > %{working_dir}/bacula_backup.sql.bz2
1152       echo "Upgrading bacula database ..."
1153       %{script_dir}/update_mysql_tables
1154       echo "If bacula works correctly you can remove the backup file %{working_dir}/bacula_backup.sql.bz2"
1155
1156   fi
1157 fi
1158 %endif
1159
1160 %if %{sqlite}
1161 # test for an existing database
1162 if [ -s %{working_dir}/bacula.db ]; then
1163         DB_VER=`echo "select * from Version;" | %{sqlite_bindir}/sqlite3 2>/dev/null %{working_dir}/bacula.db | tail -n 1`
1164         # check to see if we need to upgrade a 3.x database
1165         if [ "$DB_VER" -le "13" ] && [ "$DB_VER" -ge "12" ]; then
1166                 echo "This release requires an upgrade to your bacula database."
1167                 echo "Backing up your current database..."
1168                 echo ".dump" | %{sqlite_bindir}/sqlite3 %{working_dir}/bacula.db | bzip2 > %{working_dir}/bacula_backup.sql.bz2
1169                 echo "Upgrading bacula database ..."
1170                 %{script_dir}/update_sqlite3_tables
1171                 echo "If bacula works correctly you can remove the backup file %{working_dir}/bacula_backup.sql.bz2"
1172         fi
1173 else
1174         # create the database and tables
1175         echo "Hmm, doesn't look like you have an existing database."
1176         echo "Creating SQLite database..."
1177         %{script_dir}/create_sqlite3_database
1178         echo "Creating the SQLite tables..."
1179         %{script_dir}/make_sqlite3_tables
1180         chown %{director_daemon_user}.%{daemon_group} %{working_dir}/bacula.db
1181 fi
1182 %endif
1183
1184 %if %{postgresql}
1185 # check if psql can be called successfully at all
1186 if echo 'select * from Version;' | su - postgres -c 'psql bacula' 2>/dev/null; then
1187
1188   # test for an existing database
1189   # note: this ASSUMES no password has been set for bacula database
1190   DB_VER=`echo 'SELECT * FROM Version LIMIT 1;' | su - postgres -c 'psql bacula' 2>/dev/null | tail -3 | head -1`
1191
1192   # grant privileges and create tables if they do not exist
1193   if [ -z "$DB_VER" ]; then
1194       echo "Hmm, doesn't look like you have an existing database."
1195       echo "Creating PostgreSQL bacula database..."
1196       su - postgres -c %{script_dir}/create_postgresql_database
1197       echo "Creating bacula tables..."
1198       su - postgres -c %{script_dir}/make_postgresql_tables
1199       echo "Granting privileges for PostgreSQL user bacula..."
1200       su - postgres -c %{script_dir}/grant_postgresql_privileges
1201
1202   elif [ "$DB_VER" -ge "12" -a "$DB_VER" -lt "1015" ]; then
1203       echo "This release requires an upgrade to your bacula database."
1204       echo "Backing up your current database..."
1205       su - postgres -c 'pg_dump bacula' | bzip2 > %{working_dir}/bacula_backup.sql.bz2
1206       echo "Upgrading bacula database ..."
1207       su - postgres -c %{script_dir}/update_postgresql_tables
1208       echo "If bacula works correctly you can remove the backup file %{working_dir}/bacula_backup.sql.bz2"
1209       echo "Granting privileges for PostgreSQL user bacula..."
1210       su - postgres -c %{script_dir}/grant_postgresql_privileges
1211
1212   fi
1213 fi
1214 %endif
1215
1216 %if ! %{client_only}
1217 if [ -d %{sysconf_dir} ]; then
1218    cd %{sysconf_dir}
1219    if [ ! -f .rpm.sed ]; then
1220        (umask 0177
1221         echo "# This file is used to ensure that all passwords will" > .rpm.sed
1222         echo "# match between configuration files"                  >> .rpm.sed
1223        )
1224        for string in XXX_REPLACE_WITH_DIRECTOR_PASSWORD_XXX XXX_REPLACE_WITH_CLIENT_PASSWORD_XXX XXX_REPLACE_WITH_STORAGE_PASSWORD_XXX XXX_REPLACE_WITH_DIRECTOR_MONITOR_PASSWORD_XXX XXX_REPLACE_WITH_CLIENT_MONITOR_PASSWORD_XXX XXX_REPLACE_WITH_STORAGE_MONITOR_PASSWORD_XXX; do
1225            pass=`openssl rand -base64 33`
1226            echo "s@${string}@${pass}@g" >> .rpm.sed
1227        done
1228    fi
1229    host=`hostname -s`
1230    for file in *.conf; do
1231       sed -f .rpm.sed $file > $file.new
1232       sed "s@XXX_HOSTNAME_XXX@${host}@g" $file.new > $file
1233       rm -f $file.new
1234    done
1235 fi
1236 %endif
1237
1238
1239 %if %{mysql}
1240 %preun mysql
1241 %endif
1242 %if %{sqlite}
1243 %preun sqlite
1244 %endif
1245 %if %{postgresql}
1246 %preun postgresql
1247 %endif
1248
1249 %if ! %{client_only}
1250 # delete our links
1251 if [ $1 = 0 ]; then
1252   /sbin/chkconfig --del bacula-dir
1253   /sbin/chkconfig --del bacula-fd
1254   /sbin/chkconfig --del bacula-sd
1255 fi
1256 %endif
1257
1258 %files client
1259 %defattr(-,root,root)
1260 %attr(-, root, %{daemon_group}) %dir %{script_dir}
1261 %attr(-, root, %{daemon_group}) %dir %{plugin_dir}
1262 #%attr(-, root, %{daemon_group}) %dir %{log_dir}
1263 %attr(-, root, %{daemon_group}) %dir %{sysconf_dir}
1264 %{script_dir}/bacula-ctl-fd
1265 /etc/init.d/bacula-fd
1266
1267 /etc/logrotate.d/bacula
1268
1269 %attr(-, root, %{daemon_group}) %config(noreplace) %{sysconf_dir}/bacula-fd.conf
1270 %attr(-, root, %{daemon_group}) %config(noreplace) %{sysconf_dir}/bconsole.conf
1271 %attr(-, root, %{daemon_group}) %dir %{working_dir}
1272
1273 %{_sbindir}/bacula-fd
1274 %{_sbindir}/btraceback
1275 %attr(-, root, %{daemon_group}) %{script_dir}/btraceback.gdb
1276 %attr(-, root, %{daemon_group}) %{script_dir}/btraceback.dbx
1277 %attr(-, root, %{daemon_group}) %{script_dir}/btraceback.mdb
1278 %attr(-, root, %{daemon_group}) %{plugin_dir}/bpipe-fd.so
1279 %{_sbindir}/bconsole
1280 %{_mandir}/man8/bacula-fd.8.%{manpage_ext}
1281 %{_mandir}/man8/bacula.8.%{manpage_ext}
1282 %{_mandir}/man8/bconsole.8.%{manpage_ext}
1283 %{_mandir}/man8/btraceback.8.%{manpage_ext}
1284 %{_mandir}/man1/bat.1.%{manpage_ext}
1285 %_prefix/share/doc/*
1286
1287 %pre client
1288 # create the daemon group and user
1289 HAVE_BACULA=`grep %{daemon_group} %{group_file} 2>/dev/null`
1290 if [ -z "$HAVE_BACULA" ]; then
1291     %{groupadd} -r %{daemon_group} > /dev/null 2>&1
1292     echo "The group %{daemon_group} has been added to %{group_file}."
1293     echo "See the manual chapter \"Running Bacula\" for details."
1294 fi
1295 # we do not use the -g option allowing the primary group to be set to system default
1296 # this will be a unique group on redhat type systems or the group users on some systems
1297 HAVE_BACULA=`grep %{file_daemon_user} %{user_file} 2>/dev/null`
1298 if [ -z "$HAVE_BACULA" ]; then
1299     %{useradd} -r -c "Bacula" -d %{working_dir} -g %{daemon_group} -M -s /sbin/nologin %{file_daemon_user} > /dev/null 2>&1
1300     echo "The user %{file_daemon_user} has been added to %{user_file}."
1301     echo "See the manual chapter \"Running Bacula\" for details."
1302 fi
1303 # now we add the supplementary group, this is ok to call even if the user already exists
1304 # we only do this if the user is NOT root
1305 IS_ROOT=%{file_daemon_user}
1306 if [ "$IS_ROOT" != "root" ]; then
1307 %{usermod} -G %{daemon_group} %{file_daemon_user}
1308 fi
1309
1310 %post client
1311 # add our link
1312 if [ "$1" -ge 1 ] ; then
1313    /sbin/chkconfig --add bacula-fd
1314 fi
1315
1316 if [ -d %{sysconf_dir} ]; then
1317    cd %{sysconf_dir}
1318    if [ ! -f .rpm.sed ]; then
1319        (umask 0177
1320         echo "# This file is used to ensure that all passwords will" > .rpm.sed
1321         echo "# match between configuration files"                  >> .rpm.sed
1322        )
1323        for string in XXX_REPLACE_WITH_DIRECTOR_PASSWORD_XXX XXX_REPLACE_WITH_CLIENT_PASSWORD_XXX XXX_REPLACE_WITH_STORAGE_PASSWORD_XXX XXX_REPLACE_WITH_DIRECTOR_MONITOR_PASSWORD_XXX XXX_REPLACE_WITH_CLIENT_MONITOR_PASSWORD_XXX XXX_REPLACE_WITH_STORAGE_MONITOR_PASSWORD_XXX; do
1324            pass=`openssl rand -base64 33`
1325            echo "s@${string}@${pass}@g" >> .rpm.sed
1326        done
1327    fi
1328    host=`hostname -s`
1329    for file in *.conf; do
1330       sed -f .rpm.sed $file > $file.new
1331       sed "s@XXX_HOSTNAME_XXX@${host}@g" $file.new > $file
1332       rm -f $file.new
1333    done
1334 fi
1335
1336 %preun client
1337 # delete our link
1338 if [ $1 = 0 ]; then
1339    /sbin/chkconfig --del bacula-fd
1340 fi
1341
1342 %files libs
1343 %defattr(-,root,root)
1344 %{_libdir}/libbac-*
1345 %{_libdir}/libbac.*
1346 %{_libdir}/libbaccfg*
1347 %{_libdir}/libbacfind*
1348
1349 %post libs
1350 /sbin/ldconfig
1351 exit 0
1352
1353 %postun libs
1354 /sbin/ldconfig
1355 exit 0
1356
1357 %if ! %{client_only}
1358 %files updatedb
1359 %defattr(-,root,%{daemon_group})
1360 %{script_dir}/updatedb/*
1361 #oensuse_bs: directories not owned by any package
1362 #%{script_dir}/updatedb
1363
1364 %pre updatedb
1365 # create the daemon group
1366 HAVE_BACULA=`grep %{daemon_group} %{group_file} 2>/dev/null`
1367 if [ -z "$HAVE_BACULA" ]; then
1368     %{groupadd} -r %{daemon_group} > /dev/null 2>&1
1369     echo "The group %{daemon_group} has been added to %{group_file}."
1370     echo "See the manual chapter \"Running Bacula\" for details."
1371 fi
1372
1373 %post updatedb
1374 echo "The database update scripts were installed to %{script_dir}/updatedb"
1375 %endif
1376
1377 %changelog
1378 * Thu Mar 27 2014 Kern Sibbald <kern@sibbald.com> 7.0.0-1
1379 - New rpm spec file for Suse