]> git.pld-linux.org Git - packages/bacula.git/blame - bacula.spec
- fix openssl 1.x detection (it's just wrong lib there)
[packages/bacula.git] / bacula.spec
CommitLineData
237bfacd 1# TODO:
b0473ed3 2# - update desktop files, think about su-wrappers for console (with .desktop files)
2b68b0cb 3# - package web admin
2007449a 4# - fix log file permissions
0eba139b
ER
5# - no longer builds:
6#make[1]: *** No rule to make target `../lib/libbac.la', needed by `bacula-dir'. Stop.
7#make[1]: *** Waiting for unfinished jobs....
8#make[1]: Leaving directory `/home/users/glen/rpm/BUILD.x86_64-linux/bacula-5.0.2/src/dird'
2b68b0cb 9#
f2527d22 10# Conditional build:
6d11b02b 11%bcond_without console_wx # wx-console program
6d11b02b 12%bcond_without bat # bat Qt4 GUI
7533d19f 13%bcond_without dbi # use Database Independent Abstraction Layer (libdbi)
41bc1b6e
JK
14%bcond_without mysql # use MySQL
15%bcond_without pgsql # use PostgreSQL
41bc1b6e 16%bcond_without sqlite3 # use SQLite3
e979c70d 17%bcond_without python
819cd4b0 18%bcond_without nagios # build nagios plugin
e979c70d 19%bcond_with rescue
6d11b02b 20%bcond_with sqlite3_sync_off # makes SQLite3 backend much faster, but less reliable
0eba139b 21
8ba087a4 22%if %{without sqlite3}
aeaed87e 23%undefine with_sqlite3_sync_off
24%endif
0eba139b 25
bb6e7dc5 26Summary: Bacula - The Network Backup Solution
6a00efc0 27Summary(pl.UTF-8): Bacula - rozwiązanie do wykonywania kopii zapasowych po sieci
bb6e7dc5 28Name: bacula
7ed9cb8e 29Version: 5.0.3
d5e827d3 30Release: 6
237bfacd 31License: extended GPL v2
52504a6d 32Group: Networking/Utilities
b0473ed3 33Source0: http://downloads.sourceforge.net/bacula/%{name}-%{version}.tar.gz
7ed9cb8e 34# Source0-md5: 9de254ae39cab0587fdb2f5d8d90b03b
b0473ed3 35Source1: http://downloads.sourceforge.net/bacula/%{name}-docs-%{version}.tar.bz2
7ed9cb8e 36# Source1-md5: 7a00557dcf0dfa40de9e74176fefd1ae
37Source2: http://downloads.sourceforge.net/bacula/%{name}-rescue-5.0.1.tar.gz
38# Source2-md5: bb194aed8e204f54bf2f61d7e721f257
5ce18635
AM
39Source10: %{name}-dir.init
40Source11: %{name}-fd.init
41Source12: %{name}-sd.init
42Source13: %{name}.logrotate
4280e495
JK
43Source14: %{name}-dir.sysconfig
44Source15: %{name}-fd.sysconfig
45Source16: %{name}-sd.sysconfig
0a03f92d 46Patch0: %{name}-mtx-changer.patch
38a7d6ba 47Patch1: %{name}-link.patch
0a03f92d 48Patch2: %{name}-tinfo-readline.patch
49Patch3: %{name}-branding.patch
50Patch4: %{name}-conf.patch
c08d8c7a 51Patch5: %{name}-desktop.patch
0f65a227 52Patch7: %{name}-dbi_fixes.patch
7545e94f 53Patch8: %{name}-dbi_dbcheck.patch
4de53c49 54Patch9: %{name}-openssl1.patch
5ac6c43c 55Patch10: %{name}-dvd_rewind.patch
bb6e7dc5 56URL: http://www.bacula.org/
0819f86f 57BuildRequires: acl-devel
58BuildRequires: autoconf
f2337569 59BuildRequires: automake
0819f86f 60BuildRequires: gettext-devel
b403dd64 61BuildRequires: gtk+2-devel
0819f86f 62BuildRequires: libcap-devel
919e8378 63%{?with_dbi:BuildRequires: libdbi-devel >= 0.8.4}
2ddca527 64BuildRequires: libtool >= 2:2.2
7425cb9d
JK
65%if %{with rescue}
66BuildRequires: fakeroot
67%endif
f183f7ef 68BuildRequires: libwrap-devel
cc01862b 69BuildRequires: ncurses-devel
bb6e7dc5
AM
70BuildRequires: openssl-devel
71BuildRequires: pkgconfig
7425cb9d 72%if %{with python}
e979c70d 73BuildRequires: python-devel
b403dd64 74BuildRequires: python-modules
7425cb9d 75%endif
c19580f6 76%if %{with bat}
304bb97e 77BuildRequires: QtCore-devel
e3dd858d 78BuildRequires: QtGui-devel
846b23db
JB
79BuildRequires: qt4-build >= 4.3.3-3
80BuildRequires: qt4-qmake >= 4.3.3-3
b403dd64 81#BuildRequires: qwt-devel >= 5.0.2-2
c19580f6 82%endif
4c7199dc
SP
83%{?with_mysql:BuildRequires: mysql-devel}
84%{?with_pgsql:BuildRequires: postgresql-devel}
bb6e7dc5 85BuildRequires: readline-devel
b403dd64 86BuildRequires: rpm-pythonprov
52504a6d 87BuildRequires: rpmbuild(macros) >= 1.268
cc01862b 88BuildRequires: sed >= 4.0
6d11b02b 89%{?with_sqlite3:BuildRequires: sqlite3-devel}
b403dd64 90BuildRequires: which
1376b552 91%if %{with console_wx}
7425cb9d 92BuildRequires: wxGTK2-unicode-devel >= 2.4.0
1376b552 93%endif
bb6e7dc5 94BuildRequires: zlib-devel
bb6e7dc5
AM
95BuildRoot: %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
96
d5e827d3 97%define _sysconfdir /etc/%{name}
1a72afd2 98%define _localstatedir /var/lib/%{name}
d5e827d3 99%define nagiosplugindir %{_libdir}/nagios/plugins
bb6e7dc5 100
b8003eec
JK
101# from 'the worst' to 'the best'
102%define databases %{?with_dbi:dbi} %{?with_sqlite3:sqlite3} %{?with_mysql:mysql} %{?with_pgsql:postgresql}
41bc1b6e 103
b60fe5cb
ER
104# dependency section is broken. ccache usage is instead to makefiles
105%undefine with_ccache
106
bb6e7dc5
AM
107%description
108Bacula - It comes by night and sucks the vital essence from your
109computers.
110
111Bacula is a set of computer programs that permit you (or the system
112administrator) to manage backup, recovery, and verification of
113computer data across a network of computers of different kinds. In
114technical terms, it is a network client/server based backup program.
115Bacula is relatively easy to use and efficient, while offering many
116advanced storage management features that make it easy to find and
5ce18635 117recover lost or damaged files.
bb6e7dc5 118
192fbfcf
JR
119%description -l pl.UTF-8
120Bacula - przychodzi nocą i wysysa żywotny ekstrakt z komputerów.
cc01862b 121
192fbfcf
JR
122Bacula to zbiór programów umożliwiających administratorowi na
123zarządzanie kopiami zapasowymi, odzyskiwaniem i weryfikacją danych w
168306e6
ER
124sieci komputerów różnego rodzaju. W terminologii technicznej jest to
125program do kopii zapasowych pracujący w architekturze klient-serwer.
126Bacula jest stosunkowo łatwa w użyciu i wydajna, oferując przy tym
127wiele zaawansowanych możliwości przy zarządzaniu nośnikami,
128ułatwiających znalezienie i odzyskanie utraconych lub uszkodzonych
129plików.
cc01862b 130
5ce18635
AM
131%package common
132Summary: Common files for bacula package
6a00efc0 133Summary(pl.UTF-8): Pliki wspólne dla pakietu bacula
bb6e7dc5 134Group: Networking/Utilities
237bfacd
JK
135Requires(post): openssl-tools
136Requires(post): sed >= 4.0
1bd568e8 137Requires(post,preun): /sbin/chkconfig
65253ffd
JK
138Requires(postun): /usr/sbin/groupdel
139Requires(postun): /usr/sbin/userdel
1b0a2248 140Requires(pre): /usr/sbin/groupadd
141Requires(pre): /usr/sbin/useradd
abdcd1c5
JB
142Conflicts: bacula-console < 0:1.34.6
143Conflicts: bacula-dir < 0:1.34.6
144Conflicts: bacula-fd < 0:1.34.6
145Conflicts: bacula-sd < 0:1.34.6
bb6e7dc5 146
5ce18635 147%description common
bb6e7dc5
AM
148Bacula - It comes by night and sucks the vital essence from your
149computers.
150
151Bacula is a set of computer programs that permit you (or the system
152administrator) to manage backup, recovery, and verification of
153computer data across a network of computers of different kinds. In
154technical terms, it is a network client/server based backup program.
155Bacula is relatively easy to use and efficient, while offering many
156advanced storage management features that make it easy to find and
5ce18635 157recover lost or damaged files.
bb6e7dc5 158
192fbfcf
JR
159%description common -l pl.UTF-8
160Bacula - przychodzi nocą i wysysa żywotny ekstrakt z komputerów.
cc01862b 161
192fbfcf
JR
162Bacula to zbiór programów umożliwiających administratorowi na
163zarządzanie kopiami zapasowymi, odzyskiwaniem i weryfikacją danych w
168306e6
ER
164sieci komputerów różnego rodzaju. W terminologii technicznej jest to
165program do kopii zapasowych pracujący w architekturze klient-serwer.
166Bacula jest stosunkowo łatwa w użyciu i wydajna, oferując przy tym
167wiele zaawansowanych możliwości przy zarządzaniu nośnikami,
168ułatwiających znalezienie i odzyskanie utraconych lub uszkodzonych
169plików.
cc01862b 170
5ce18635
AM
171%package dir
172Summary: Bacula Director and Catalog services
6a00efc0 173Summary(pl.UTF-8): Usługi Bacula Director i Catalog
5ce18635 174Group: Networking/Utilities
237bfacd 175Requires(post): sed >= 4.0
74c2ad1c
ER
176Requires: %{name}-common = %{version}-%{release}
177Requires: bacula(db) = %{version}-%{release}
abdcd1c5 178Obsoletes: bacula-updatedb
bb6e7dc5 179
5ce18635
AM
180%description dir
181Bacula - It comes by night and sucks the vital essence from your
182computers.
183
184Bacula Director is the program that supervises all the backup,
185restore, verify and archive operations. The system administrator uses
186the Bacula Director to schedule backups and to recover files. Catalog
187services are comprised of the software programs responsible for
188maintaining the file indexes and volume databases for all files backed
189up. The Catalog services permit the System Administrator or user to
190quickly locate and restore any desired file, since it maintains a
7533d19f 191record of all Volumes used, all Jobs run, and all Files saved.
5ce18635 192
192fbfcf
JR
193%description dir -l pl.UTF-8
194Bacula - przychodzi nocą i wysysa żywotny ekstrakt z komputerów.
cc01862b 195
192fbfcf 196Bacula Director to program nadzorujący wszystkie operacje wykonywania
cc01862b 197kopii zapasowych, odzyskiwania, weryfikacji i archiwizowania.
192fbfcf
JR
198Administrator używa Bacula Directora do szeregowania kopii zapasowych
199oraz odzyskiwania plików. Usługi katalogowe (Catalog services) są
168306e6
ER
200używane przez programy odpowiedzialne za zarządzanie indeksami plików
201i bazą danych wolumenów dla wszystkich kopiowanych plików. Usługi
202katalogowe umożliwiają administratorowi lub użytkownikowi szybko
203zlokalizować i odtworzyć dowolny plik, ponieważ utrzymują rekord ze
204wszystkimi używanymi wolumenami, uruchomionymi zadaniami i zapisanymi
205plikami.
cc01862b 206
5ce18635
AM
207%package console
208Summary: Bacula Console
6a00efc0 209Summary(pl.UTF-8): Konsola Baculi
5ce18635 210Group: Networking/Utilities
237bfacd 211Requires(post): sed >= 4.0
74c2ad1c 212Requires: %{name}-common = %{version}-%{release}
5ce18635
AM
213
214%description console
215Bacula - It comes by night and sucks the vital essence from your
216computers.
217
218Bacula Console is the program that allows the administrator or user to
219communicate with the Bacula Director. This is the text only console
220interface.
221
192fbfcf
JR
222%description console -l pl.UTF-8
223Bacula - przychodzi nocą i wysysa żywotny ekstrakt z komputerów.
cc01862b 224
192fbfcf
JR
225Bacula Console to program umożliwiający administratorowi lub
226użytkownikowi komunikowanie się z programem Bacula Director. To jest
cc01862b
JB
227interfejs czysto tekstowy.
228
5ce18635 229%package console-wx
cc01862b 230Summary: Bacula wxWidgets Console
6a00efc0 231Summary(pl.UTF-8): Konsola Baculi oparta na wxWidgets
5ce18635 232Group: Networking/Utilities
237bfacd 233Requires(post): sed >= 4.0
74c2ad1c 234Requires: %{name}-common = %{version}-%{release}
5ce18635
AM
235
236%description console-wx
237Bacula - It comes by night and sucks the vital essence from your
238computers.
239
240Bacula Console is the program that allows the administrator or user to
cc01862b 241communicate with the Bacula Director. This is the wxWidgets GUI
5ce18635
AM
242interface.
243
192fbfcf
JR
244%description console-wx -l pl.UTF-8
245Bacula - przychodzi nocą i wysysa żywotny ekstrakt z komputerów.
cc01862b 246
192fbfcf
JR
247Bacula Console to program umożliwiający administratorowi lub
248użytkownikowi komunikowanie się z programem Bacula Director. To jest
cc01862b
JB
249interfejs graficzny oparty na wxWidgets.
250
304bb97e 251%package console-qt4
ece2f4c3
JB
252Summary: Bacula Qt4 Console
253Summary(pl.UTF-8): Konsola Baculi oparta na Qt4
304bb97e
AM
254Group: Networking/Utilities
255Requires(post): sed >= 4.0
74c2ad1c 256Requires: %{name}-common = %{version}-%{release}
304bb97e
AM
257
258%description console-qt4
259Bacula - It comes by night and sucks the vital essence from your
260computers.
261
262Bacula Console is the program that allows the administrator or user to
ece2f4c3 263communicate with the Bacula Director. This is the Qt4 GUI interface.
304bb97e
AM
264
265%description console-qt4 -l pl.UTF-8
266Bacula - przychodzi nocą i wysysa żywotny ekstrakt z komputerów.
267
268Bacula Console to program umożliwiający administratorowi lub
269użytkownikowi komunikowanie się z programem Bacula Director. To jest
ece2f4c3 270interfejs graficzny oparty na Qt4.
304bb97e 271
237bfacd
JK
272%package tray-monitor
273Summary: Bacula Tray Monitor
274Group: Networking/Utilities
237bfacd 275Requires(post): sed >= 4.0
74c2ad1c 276Requires: %{name}-common = %{version}-%{release}
237bfacd
JK
277
278%description tray-monitor
279Bacula - It comes by night and sucks the vital essence from your
280computers.
281
1b0a2248 282The Monitor program is typically an icon in the system tray. However,
283once the icon is expanded into a full window, the administrator or
284user can obtain status information about the Director or the backup
285status on the local workstation or any other Bacula daemon that is
286configured.
237bfacd 287
5ce18635
AM
288%package fd
289Summary: Bacula File services (Client)
6a00efc0 290Summary(pl.UTF-8): Usługi Bacula File (klient)
5ce18635 291Group: Networking/Utilities
237bfacd 292Requires(post): sed >= 4.0
74c2ad1c 293Requires: %{name}-common = %{version}-%{release}
5ce18635
AM
294
295%description fd
296Bacula - It comes by night and sucks the vital essence from your
297computers.
298
299Bacula File services (or Client program) is the software program that
300is installed on the machine to be backed up. It is specific to the
301operating system on which it runs and is responsible for providing the
302file attributes and data when requested by the Director. The File
303services are also responsible for the file system dependent part of
304restoring the file attributes and data during a recovery operation.
305This program runs as a daemon on the machine to be backed up, and in
306some of the documentation, the File daemon is referred to as the
307Client (for example in Bacula configuration file).
308
192fbfcf
JR
309%description fd -l pl.UTF-8
310Bacula - przychodzi nocą i wysysa żywotny ekstrakt z komputerów.
311
168306e6
ER
312Usługi Bacula File (inaczej program kliencki) to oprogramowanie, które
313instaluje się na maszynach, z których mają być wykonywane kopie
314zapasowe. Są one specyficzne dla systemu operacyjnego, pod którym
315działa dana maszyna i odpowiadają za dostarczanie atrybutów i danych
316plików na żądanie Directora. Usługi plikowe są także odpowiedzialne za
317zależną od systemu plików część odzyskiwania atrybutów i danych plików
318podczas operacji odzyskiwania danych. Program działa jako demon na
319maszynie, która ma być backupowana i w części dokumentacji demon ten
320(File) jest nazywany klientem (na przykład w pliku konfiguracyjnym
321Baculi).
cc01862b 322
5ce18635
AM
323%package sd
324Summary: Bacula Storage services
6a00efc0 325Summary(pl.UTF-8): Usługi Bacula Storage
5ce18635 326Group: Networking/Utilities
237bfacd 327Requires(post): sed >= 4.0
74c2ad1c 328Requires: %{name}-common = %{version}-%{release}
329073aa 329Conflicts: dvd+rw-tools <= 5.21.4.10.8-1
5ce18635
AM
330
331%description sd
332Bacula - It comes by night and sucks the vital essence from your
333computers.
334
335Bacula Storage services consist of the software programs that perform
336the storage and recovery of the file attributes and data to the
337physical backup media or volumes. In other words, the Storage daemon
338is responsible for reading and writing your tapes (or other storage
339media, e.g. files). The Storage services runs as a daemon on the
340machine that has the backup device (usually a tape drive).
bb6e7dc5 341
192fbfcf
JR
342%description sd -l pl.UTF-8
343Bacula - przychodzi nocą i wysysa żywotny ekstrakt z komputerów.
cc01862b 344
192fbfcf
JR
345Usługi Bacula Storage składają się z programów obsługujących
346przechowywanie danych oraz odzyskiwanie atrybutów i danych na
168306e6
ER
347fizycznych nośnikach lub wolumenach. Innymi słowy, demon Storage jest
348odpowiedzialny za odczyt i zapis taśm (lub innych nośników do
349przechowywania danych, np. plików). Usługi Storage działają jako demon
350na maszynie, która zawiera urządzenie backupowe (zwykle napęd
192fbfcf 351taśmowy).
cc01862b 352
41bc1b6e
JK
353%package db-postgresql
354Summary: PostgreSQL database driver for Bacula
355Summary(pl.UTF-8): Sterownik bazy PostgreSQL dla Baculi
356Group: Networking/Utilities
357Requires(post): /sbin/ldconfig
74c2ad1c
ER
358Requires: %{name}-common = %{version}-%{release}
359Provides: bacula(db) = %{version}-%{release}
168306e6 360Obsoletes: bacula(db)
41bc1b6e
JK
361
362%description db-postgresql
363PostgreSQL database driver for Bacula.
364
365%description db-postgresql -l pl.UTF-8
366Sterownik bazy PostgreSQL dla Baculi.
367
368%package db-mysql
369Summary: MySQL database driver for Bacula
370Summary(pl.UTF-8): Sterownik bazy MySQL dla Baculi
371Group: Networking/Utilities
372Requires(post): /sbin/ldconfig
74c2ad1c
ER
373Requires: %{name}-common = %{version}-%{release}
374Provides: bacula(db) = %{version}-%{release}
168306e6 375Obsoletes: bacula(db)
41bc1b6e
JK
376
377%description db-mysql
378MySQL database driver for Bacula.
379
380%description db-mysql -l pl.UTF-8
381Sterownik bazy MySQL dla Baculi.
382
383%package db-sqlite3
384Summary: SQLite database driver for Bacula
385Summary(pl.UTF-8): Sterownik bazy SQLite dla Baculi
386Group: Networking/Utilities
387Requires(post): /sbin/ldconfig
74c2ad1c
ER
388Requires: %{name}-common = %{version}-%{release}
389Provides: bacula(db) = %{version}-%{release}
168306e6 390Obsoletes: bacula(db)
41bc1b6e
JK
391
392%description db-sqlite3
393SQLite database driver for Bacula.
394
395%description db-sqlite3 -l pl.UTF-8
396Sterownik bazy SQLite dla Baculi.
397
398%package db-dbi
399Summary: libdbi database driver for Bacula
400Summary(pl.UTF-8): Sterownik bazy libdbi dla Baculi
401Group: Networking/Utilities
402Requires(post): /sbin/ldconfig
74c2ad1c
ER
403Requires: %{name}-common = %{version}-%{release}
404Provides: bacula(db) = %{version}-%{release}
168306e6 405Obsoletes: bacula(db)
41bc1b6e
JK
406
407%description db-dbi
408libdbi database driver for Bacula.
409
410%description db-dbi -l pl.UTF-8
411Sterownik baz libdbi dla Baculi.
412
5ce18635 413%package rescue
bb6e7dc5 414Summary: Bacula - The Network Backup Solution
6a00efc0 415Summary(pl.UTF-8): Bacula - rozwiązanie do wykonywania kopii zapasowych po sieci
bb6e7dc5 416Group: Networking/Utilities
74c2ad1c 417Requires: %{name}-fd = %{version}-%{release}
bb6e7dc5
AM
418Requires: coreutils
419Requires: util-linux
bb6e7dc5
AM
420
421%description rescue
422Bacula - It comes by night and sucks the vital essence from your
423computers.
424
425Bacula is a set of computer programs that permit you (or the system
426administrator) to manage backup, recovery, and verification of
427computer data across a network of computers of different kinds. In
428technical terms, it is a network client/server based backup program.
429Bacula is relatively easy to use and efficient, while offering many
430advanced storage management features that make it easy to find and
cc01862b 431recover lost or damaged files.
bb6e7dc5
AM
432
433This package installs scripts for disaster recovery and builds rescue
1b0a2248 434floppy disk for bare metal recovery.
237bfacd 435
192fbfcf
JR
436%description rescue -l pl.UTF-8
437Bacula - przychodzi nocą i wysysa żywotny ekstrakt z komputerów.
cc01862b 438
192fbfcf
JR
439Bacula to zbiór programów umożliwiających administratorowi na
440zarządzanie kopiami zapasowymi, odzyskiwaniem i weryfikacją danych w
168306e6
ER
441sieci komputerów różnego rodzaju. W terminologii technicznej jest to
442program do kopii zapasowych pracujący w architekturze klient-serwer.
443Bacula jest stosunkowo łatwa w użyciu i wydajna, oferując przy tym
444wiele zaawansowanych możliwości przy zarządzaniu nośnikami,
445ułatwiających znalezienie i odzyskanie utraconych lub uszkodzonych
446plików.
447
448Ten pakiet zawiera skrypty do odtwarzania po awarii i tworzy dyskietkę
449ratunkowe do odtwarzania systemu od zera.
bb6e7dc5 450
b0473ed3
ER
451%package -n nagios-plugin-check_bacula
452Summary: Nagios plugin to check bacula
453Group: Networking
454Requires: nagios-common
455
456%description -n nagios-plugin-check_bacula
457Nagios plugin to check bacula.
458
bb6e7dc5 459%prep
7425cb9d 460%setup -q -a 1
0a03f92d 461%patch0 -p1
b22d4b59 462%patch1 -p0
cf0cfe65 463%patch2 -p1
ecb9bab1 464%patch3 -p1
e740cd49 465%patch4 -p1
c08d8c7a 466%patch5 -p1
dae3a0bd 467%patch7 -p1
7545e94f 468%patch8 -p1
4de53c49 469%patch9 -p1
5ac6c43c 470%patch10 -p1
aa6db71e 471
783dd8b1 472tar -xf %{SOURCE2} && ln -s bacula-rescue-* rescue
cf50297e 473
10650249
AM
474sed -i -e 's#bindir=.*#bindir=%{_bindir}#g' \
475 src/cats/create_* src/cats/delete_* src/cats/drop_* \
476 src/cats/grant_* src/cats/make_* src/cats/update_*
237bfacd 477sed -i -e 's/@hostname@/--hostname--/' src/*/*.conf.in
bb6e7dc5 478
d626c535 479%if %{with dbi}
41bc1b6e 480for dbtype in mysql postgresql sqlite3; do
0f65a227
MM
481 sed -i -e "s,@DB_TYPE@,$dbtype,g" src/cats/*_${dbtype}_*
482done
d626c535 483%endif
0f65a227 484
bb6e7dc5 485%build
4a39c080
ER
486cd autoconf
487%{__aclocal} -I bacula-macros -I gettext-macros
488# $BUILD_DIR not seen by libtoolize, export it
489BUILD_DIR=.. %{__libtoolize}
490cd ..
cf50297e
AM
491%{__autoconf} --prepend-include=$(pwd)/autoconf autoconf/configure.in > configure
492
dae3a0bd
JK
493CPPFLAGS="-I/usr/include/ncurses -I%{_includedir}/readline"
494
b8003eec 495# we wan't the 'base' build built with the last database in the list,
dae3a0bd 496# to make sure it is full-featured
b0473ed3 497for database in %{databases}; do
41bc1b6e 498 WXCONFIG=%{_bindir}/wx-gtk2-unicode-config \
b403dd64 499 QMAKE=%{_bindir}/qt4-qmake \
41bc1b6e
JK
500 %configure \
501 --with-scriptdir=%{_libexecdir}/%{name} \
502 %{?with_bat:--enable-bat} \
503 --disable-conio \
504 --enable-smartalloc \
505 %{?with_console_wx:--enable-bwx-console} \
506 --enable-tray-monitor \
507 %{?with_python:--with-python} \
508 --with-readline \
509 --with-tcp-wrappers \
510 --with-working-dir=%{_var}/lib/%{name} \
511 --with-dump-email="root@localhost" \
512 --with-job-email="root@localhost" \
513 --with-smtp-host=localhost \
514 --with-pid-dir=/var/run \
515 --with-subsys-dir=/var/lock/subsys \
516 --enable-batch-insert \
517 --with-$database \
518 %{?with_sqlite3_sync_off:--enable-extra-sqlite3-init="pragma synchronous=0;"} \
519 --with-dir-password="#FAKE-dir-password#" \
520 --with-fd-password="#FAKE-fd-password#" \
521 --with-sd-password="#FAKE-sd-password#" \
522 --with-mon-dir-password="#FAKE-mon-dir-password#" \
523 --with-mon-fd-password="#FAKE-mon-fd-password#" \
524 --with-mon-sd-password="#FAKE-mon-sd-password#" \
525 --with-openssl
526
b8003eec
JK
527 # build the database library
528 %{__make} -C src/cats clean
529 %{__make} -C src/cats
41bc1b6e 530
b8003eec 531 # install the database library in a temporary location
41bc1b6e
JK
532 install -d libbacsql/$database%{_libdir}
533 %{__make} -C src/cats libtool-install DESTDIR=$PWD/libbacsql/$database
534done
bb6e7dc5 535
b8003eec
JK
536%if %{with bat}
537cd src/qt-console
538qmake-qt4 bat.pro
539cd ../..
540%endif
541
542%{__make}
543
b0473ed3
ER
544%if %{with nagios}
545# nagios plugin
546%{__make} -C examples/nagios/check_bacula
547%endif
548
2b68b0cb
AM
549%if %{with rescue}
550cd rescue
551%configure \
552 --with-bacula=../
553cd linux/cdrom
554fakeroot %{__make}
555%endif
556
bb6e7dc5
AM
557%install
558rm -rf $RPM_BUILD_ROOT
237bfacd
JK
559install -d $RPM_BUILD_ROOT/etc/{rc.d/init.d,logrotate.d,pam.d,sysconfig}
560install -d $RPM_BUILD_ROOT%{_sysconfdir}/rescue
3c0eac7c 561install -d $RPM_BUILD_ROOT{%{_pixmapsdir},%{_desktopdir},%{_mandir},%{_bindir},/var/log/bacula}
bb6e7dc5
AM
562
563%{__make} install \
564 DESTDIR=$RPM_BUILD_ROOT
565
41bc1b6e
JK
566# install libraries for all the database backends
567# ldconfig will add the soname symlinks when one of the packages is installed
b0473ed3 568for database in %{databases}; do
8b9ffa69
ER
569 for libfile in libbacsql/$database%{_libdir}/lib*-*.so; do
570 orig_name=${libfile##*/}
571 file_prefix=${orig_name%%-*.so}
572 file_suffix=${orig_name#*-}
573 file_name=$file_prefix-$database-$file_suffix
2f8e46d4
ER
574 install -p $libfile $RPM_BUILD_ROOT%{_libdir}/$file_name
575 touch $RPM_BUILD_ROOT%{_libdir}/$orig_name
41bc1b6e
JK
576 done
577done
578
aa70ead8
ER
579# replace with empty file, replaced by ldconfig from each db-* package on intsall
580rm -f $RPM_BUILD_ROOT%{_libdir}/libbacsql-%{version}.so
581touch $RPM_BUILD_ROOT%{_libdir}/libbacsql-%{version}.so
582
8b9ffa69
ER
583install -p %{SOURCE10} $RPM_BUILD_ROOT/etc/rc.d/init.d/bacula-dir
584install -p %{SOURCE11} $RPM_BUILD_ROOT/etc/rc.d/init.d/bacula-fd
585install -p %{SOURCE12} $RPM_BUILD_ROOT/etc/rc.d/init.d/bacula-sd
586cp -a %{SOURCE13} $RPM_BUILD_ROOT/etc/logrotate.d/%{name}-dir
587cp -a %{SOURCE14} $RPM_BUILD_ROOT/etc/sysconfig/bacula-dir
588cp -a %{SOURCE15} $RPM_BUILD_ROOT/etc/sysconfig/bacula-fd
589cp -a %{SOURCE16} $RPM_BUILD_ROOT/etc/sysconfig/bacula-sd
d907cd57 590
cacc89f5
AZ
591%if %{with console_wx}
592# tray-monitor is for regular users
a3c6e4e6 593#mv $RPM_BUILD_ROOT%{_sbindir}/bacula-tray-monitor $RPM_BUILD_ROOT%{_bindir}
cacc89f5 594
b0473ed3 595cp -a scripts/bacula.png $RPM_BUILD_ROOT%{_pixmapsdir}/bacula.png
a3c6e4e6 596#install src/tray-monitor/generic.xpm $RPM_BUILD_ROOT%{_pixmapsdir}/bacula-tray-monitor.xpm
237bfacd
JK
597sed -e 's/gnome-console/wx-console/g;s/Console/Wx Console/g' \
598 scripts/bacula.desktop.gnome2 > $RPM_BUILD_ROOT%{_desktopdir}/bacula-wx.desktop
a3c6e4e6
AZ
599#sed -e 's#%{_sbindir}#%{_bindir}#' \
600# scripts/bacula-tray-monitor.desktop > $RPM_BUILD_ROOT%{_desktopdir}/bacula-tray-monitor.desktop
cacc89f5 601%endif
d907cd57 602
304bb97e 603%if %{with bat}
325e3bd5 604mv $RPM_BUILD_ROOT{%{_sbindir},%{_bindir}}/bat
b0473ed3 605cp -a scripts/bat.desktop $RPM_BUILD_ROOT%{_desktopdir}
304bb97e
AM
606%endif
607
2b68b0cb 608%if %{with rescue}
d907cd57 609# install the rescue stuff, these are the rescue scripts
b0473ed3
ER
610cp -a rescue/linux/floppy/backup.etc.list $RPM_BUILD_ROOT%{_sysconfdir}/rescue
611cp -a rescue/linux/floppy/sfdisk.bz2 $RPM_BUILD_ROOT%{_sysconfdir}/rescue
612install -p rescue/linux/floppy/*_* $RPM_BUILD_ROOT%{_sysconfdir}/rescue
613install -p rescue/linux/floppy/getdiskinfo $RPM_BUILD_ROOT%{_sysconfdir}/rescue
2b68b0cb 614%endif
bb6e7dc5 615
3c0eac7c
AM
616touch $RPM_BUILD_ROOT/var/log/bacula/log
617
2f8e46d4
ER
618# install the updatedb scripts for older versions that last full release
619# 2.0 -> 3.0 : 10_to_11
620install -p updatedb/update_*_tables_10_to_11 $RPM_BUILD_ROOT%{_libexecdir}/%{name}
d907cd57 621
237bfacd
JK
622# place for site passwords
623touch $RPM_BUILD_ROOT%{_sysconfdir}/{dir-password,fd-password,sd-password}
624touch $RPM_BUILD_ROOT%{_sysconfdir}/{mon-dir-password,mon-fd-password,mon-sd-password}
bb6e7dc5 625
8ba087a4 626mv $RPM_BUILD_ROOT%{_libdir}/bacula/mtx-changer.conf $RPM_BUILD_ROOT/etc/bacula/mtx-changer.conf
0a03f92d 627
1a72afd2
AM
628# some file changes
629rm -f $RPM_BUILD_ROOT%{_libexecdir}/%{name}/{gconsole,startmysql,stopmysql,bacula,bconsole,fd}
8ba087a4 630%if %{without console_wx}
1376b552 631rm -f $RPM_BUILD_ROOT%{_desktopdir}/bacula-wx.desktop
1376b552 632%endif
1a72afd2
AM
633touch $RPM_BUILD_ROOT%{_sysconfdir}/.pw.sed
634
8ba087a4
ER
635rm $RPM_BUILD_ROOT%{_docdir}/bacula/ChangeLog
636rm $RPM_BUILD_ROOT%{_docdir}/bacula/INSTALL
637rm $RPM_BUILD_ROOT%{_docdir}/bacula/LICENSE
638rm $RPM_BUILD_ROOT%{_docdir}/bacula/README
639rm $RPM_BUILD_ROOT%{_docdir}/bacula/ReleaseNotes
640rm $RPM_BUILD_ROOT%{_docdir}/bacula/VERIFYING
641rm $RPM_BUILD_ROOT%{_docdir}/bacula/technotes
642
7545e94f
JK
643# startup scripts, those in /etc/rc.d/init.d are better
644rm $RPM_BUILD_ROOT%{_sbindir}/bacula
645rm $RPM_BUILD_ROOT%{_libexecdir}/%{name}/bacula-ctl-*
646
41bc1b6e 647# unsupported
8fb2ca23 648rm $RPM_BUILD_ROOT%{_libexecdir}/%{name}/btraceback.mdb
41bc1b6e 649
7545e94f
JK
650# rename to avoid possible conflicts
651mv $RPM_BUILD_ROOT%{_sbindir}/{,bacula-}dbcheck
652mv $RPM_BUILD_ROOT%{_mandir}/man8/{,bacula-}dbcheck.8.gz
653
654# no -devel files packaged, so this is also useless
655rm $RPM_BUILD_ROOT%{_libdir}/libbac{,cfg,find,py,sql}.{so,la}
656
41bc1b6e
JK
657# placeholders for the symlinks set in %%post db-*
658for f in create_bacula_database drop_bacula_database drop_bacula_tables \
659 grant_bacula_privileges make_bacula_tables update_bacula_tables ; do
660
c9fdf288 661 touch $RPM_BUILD_ROOT%{_libexecdir}/%{name}/$f
41bc1b6e 662done
7545e94f 663
b0473ed3 664%if %{with nagios}
819cd4b0 665install -d $RPM_BUILD_ROOT%{nagiosplugindir}
b0473ed3
ER
666%{__make} -C examples/nagios/check_bacula install \
667 sbindir=%{nagiosplugindir} \
403b68c1 668 INSTALL_PROGRAM="libtool --mode=install install -p" \
b0473ed3
ER
669 DESTDIR=$RPM_BUILD_ROOT
670%endif
7545e94f 671
f2337569
JB
672%clean
673rm -rf $RPM_BUILD_ROOT
674
5ce18635 675%pre common
fbc59152
ER
676%groupadd -P %{name}-common -g 136 -r -f bacula
677%useradd -P %{name}-common -u 136 -r -d /var/lib/bacula -s /bin/false -c "Bacula User" -g bacula bacula
5ce18635 678
b8003eec 679%define update_configs \
210f992b 680echo "Updating bacula passwords and names..." | %banner -a %{name} \
b8003eec 681cd /etc/bacula \
2f8e46d4
ER
682for f in *-password; do \
683 if [ ! -s $f ]; then \
b8003eec
JK
684 openssl rand -base64 33 > $f \
685 fi \
2f8e46d4
ER
686 p=$(cat $f) \
687 for cf in *.conf *.conf.rpmnew; do \
b8003eec
JK
688 [ -f $cf ] && sed -i -e"s:#FAKE-$f#:$p:" "$cf" || : \
689 done \
690done \
2f8e46d4 691for cf in *.conf *.conf.rpmnew; do \
b8003eec
JK
692 [ -f $cf ] && sed -i -e"s:--hostname--:`hostname`:" "$cf" || : \
693done
694
237bfacd 695%post common
0a03f92d 696/sbin/ldconfig
b8003eec 697%update_configs
237bfacd 698
5ce18635 699%postun common
0a03f92d 700/sbin/ldconfig
28c9f5d0
AM
701if [ "$1" = "0" ]; then
702 %userremove bacula
703 %groupremove bacula
704fi
5ce18635 705
b8003eec
JK
706%triggerpostun dir -- %{name}-dir < 5.0
707%banner bacula-dir -t3 <<EOF
708You have upgraded from an older version of Bacula director.
bb6e7dc5 709
b8003eec
JK
710You will probably need to call %{_libexecdir}/%{name}/update_bacula_tables
711script to upgrade the database.
712EOF
237bfacd 713
b8003eec
JK
714%post dir
715%update_configs
1a72afd2 716/sbin/chkconfig --add bacula-dir
52504a6d 717%service bacula-dir restart "Bacula Director daemon"
bb6e7dc5 718
5ce18635 719%preun dir
1a72afd2 720if [ "$1" = "0" ]; then
52504a6d 721 %service bacula-dir stop
9aa69d51 722 /sbin/chkconfig --del bacula-dir
1a72afd2 723fi
bb6e7dc5 724
5ce18635 725%post fd
b8003eec 726%update_configs
1a72afd2 727/sbin/chkconfig --add bacula-fd
52504a6d 728%service bacula-fd restart "Bacula File daemon"
bb6e7dc5 729
5ce18635 730%preun fd
1a72afd2 731if [ "$1" = "0" ]; then
52504a6d 732 %service bacula-fd stop
9aa69d51 733 /sbin/chkconfig --del bacula-fd
1a72afd2 734fi
5ce18635
AM
735
736%post sd
b8003eec 737%update_configs
1a72afd2 738/sbin/chkconfig --add bacula-sd
52504a6d 739%service bacula-sd restart "Bacula Storage daemon"
bb6e7dc5 740
5ce18635 741%preun sd
1a72afd2 742if [ "$1" = "0" ]; then
52504a6d 743 %service bacula-sd stop
9aa69d51 744 /sbin/chkconfig --del bacula-sd
1a72afd2 745fi
5ce18635
AM
746
747%pre console
748if [ -e %{_sysconfdir}/console.conf -a ! -e %{_sysconfdir}/bconsole.conf ]; then
9aa69d51 749 mv %{_sysconfdir}/console.conf %{_sysconfdir}/bconsole.conf
bb6e7dc5
AM
750fi
751
237bfacd 752%post console
b8003eec 753%update_configs
237bfacd
JK
754
755%post console-wx
b8003eec 756%update_configs
237bfacd 757
827db798 758%triggerpostun common -- %{name}-common < 5.0.1-2
3a5cd5d7
JK
759find /etc/bacula/bat.conf* -perm /007 -print0 | xargs -0 -r chmod 600 || :
760
304bb97e 761%post console-qt4
b8003eec 762%update_configs
304bb97e 763
237bfacd 764%post tray-monitor
b8003eec 765%update_configs
bb6e7dc5 766
bb6e7dc5
AM
767%post rescue
768# link our current installed conf file to the rescue directory
f2337569 769ln -sf %{_sysconfdir}/bacula-fd.conf %{_sysconfdir}/rescue/bacula-fd.conf
bb6e7dc5
AM
770
771# run getdiskinfo
772echo "Creating rescue files for this system..."
d907cd57 773cd %{_sysconfdir}/rescue
bb6e7dc5
AM
774./getdiskinfo
775
776%preun rescue
777# remove the files created after the initial rpm installation
f2337569
JB
778if [ "$1" = "0" ]; then
779 rm -f %{_sysconfdir}/rescue/bacula-fd.conf
780 rm -f %{_sysconfdir}/rescue/partition.*
781 rm -f %{_sysconfdir}/rescue/format.*
782 rm -f %{_sysconfdir}/rescue/mount_drives
783 rm -f %{_sysconfdir}/rescue/start_network
784 rm -f %{_sysconfdir}/rescue/sfdisk
785 rm -rf %{_sysconfdir}/rescue/diskinfo/*
786fi
bb6e7dc5 787
41bc1b6e
JK
788%define db_post() \
789/sbin/ldconfig \
b0473ed3 790for name in "create database" "drop tables" "drop database" "grant privileges" "make tables" "update tables"; do \
41bc1b6e
JK
791 prefix="${name%% *}" \
792 suffix="${name#* }" \
b0473ed3 793 ln -sf "${prefix}_%{1}_${suffix}" %{_libexecdir}/%{name}/"${prefix}_bacula_${suffix}" || : \
dae3a0bd
JK
794done \
795%service bacula-dir restart "Bacula Director daemon"
796
797%define db_postun() \
798/sbin/ldconfig \
799if [ "$1" = "0" ]; then \
b0473ed3
ER
800 for f in %{_libexecdir}/%{name}/*_bacula_*; do \
801 if [ -L "$f" -a ! -e "$f" ]; then \
dae3a0bd
JK
802 rm "$f" \
803 fi \
804 done \
805fi
41bc1b6e
JK
806
807%post db-postgresql
808%db_post postgresql
809
dae3a0bd
JK
810%postun db-postgresql
811%db_postun postgresql
812
41bc1b6e
JK
813%post db-mysql
814%db_post mysql
815
dae3a0bd
JK
816%postun db-mysql
817%db_postun mysql
818
41bc1b6e
JK
819%post db-sqlite3
820%db_post sqlite3
821
dae3a0bd
JK
822%postun db-sqlite3
823%db_postun sqlite3
824
825# dbi backend is different, as it is not bound with a specific db engine
41bc1b6e
JK
826%post db-dbi
827/sbin/ldconfig
b8003eec 828%service bacula-dir restart "Bacula Director daemon"
41bc1b6e 829
dae3a0bd
JK
830%postun db-dbi -p /sbin/ldconfig
831
5ce18635
AM
832%files common
833%defattr(644,root,root,755)
237bfacd 834%doc LICENSE
1a72afd2 835%dir %{_sysconfdir}
1b0a2248 836%attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/*-password
7545e94f
JK
837# do not remove bsmtp from files. Fix build if it is not installed.
838%attr(755,root,root) %{_sbindir}/bsmtp
7425cb9d 839%attr(755,root,root) %{_sbindir}/btraceback
6f3f1b78
JK
840%attr(755,root,root) %{_libdir}/libbac-5*.so
841%attr(755,root,root) %{_libdir}/libbaccfg-5*.so
842%attr(755,root,root) %{_libdir}/libbacfind-5*.so
843%attr(755,root,root) %{_libdir}/libbacpy-5*.so
c74b041d 844%{_mandir}/man8/bacula.8*
7425cb9d
JK
845%{_mandir}/man1/bsmtp.1*
846%{_mandir}/man8/btraceback.8*
5ce18635 847%dir %{_libexecdir}/%{name}
1376b552 848%{_libexecdir}/%{name}/btraceback.dbx
5ce18635 849%{_libexecdir}/%{name}/btraceback.gdb
7545e94f 850%{_libexecdir}/%{name}/bacula_config
d6dbe33c 851%attr(770,root,bacula) %dir %{_localstatedir}
3c0eac7c
AM
852%attr(750,bacula,logs) %dir /var/log/bacula
853%attr(640,bacula,logs) %ghost /var/log/bacula/log
5ce18635
AM
854
855%files dir
bb6e7dc5 856%defattr(644,root,root,755)
237bfacd 857%doc ChangeLog CheckList ReleaseNotes kernstodo LICENSE
28647453 858#%doc examples %{name}-docs-%{version}/manual/{*.pdf,bacula}
cc515592 859%attr(640,root,bacula) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/bacula-dir.conf
1a72afd2 860%ghost %{_sysconfdir}/.pw.sed
28c9f5d0 861%attr(640,root,root) %config(noreplace) /etc/logrotate.d/bacula-dir
1a72afd2 862%attr(754,root,root) /etc/rc.d/init.d/bacula-dir
cd23ba7c 863%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/bacula-dir
5ff0b6a3 864%attr(755,root,root) %{_sbindir}/bacula-dir
7545e94f
JK
865%attr(755,root,root) %{_sbindir}/bregex
866%attr(755,root,root) %{_sbindir}/bwild
867%attr(755,root,root) %{_sbindir}/bacula-dbcheck
79d0fef6 868%{_mandir}/man8/bacula-dir.8*
7545e94f 869%{_mandir}/man8/bacula-dbcheck.8*
79d0fef6 870%{_libexecdir}/%{name}/query.sql
41bc1b6e
JK
871#%attr(755,root,root) %{_libexecdir}/%{name}/make_catalog_backup
872#%attr(755,root,root) %{_libexecdir}/%{name}/delete_catalog_backup
873
874%files db-postgresql
875%defattr(644,root,root,755)
876%attr(755,root,root) %{_libexecdir}/%{name}/create_postgresql_database
877%attr(755,root,root) %{_libexecdir}/%{name}/drop_postgresql_database
878%attr(755,root,root) %{_libexecdir}/%{name}/drop_postgresql_tables
879%attr(755,root,root) %{_libexecdir}/%{name}/grant_postgresql_privileges
880%attr(755,root,root) %{_libexecdir}/%{name}/make_postgresql_tables
881%attr(755,root,root) %{_libexecdir}/%{name}/update_postgresql_*
9fdbb2e7 882%attr(755,root,root) %{_libdir}/libbacsql-postgresql-5*.so
41bc1b6e 883
9fdbb2e7 884%ghost %attr(755,root,root) %{_libdir}/libbacsql-5*.so
41bc1b6e
JK
885%ghost %{_libexecdir}/%{name}/create_bacula_database
886%ghost %{_libexecdir}/%{name}/drop_bacula_tables
887%ghost %{_libexecdir}/%{name}/drop_bacula_database
888%ghost %{_libexecdir}/%{name}/grant_bacula_privileges
889%ghost %{_libexecdir}/%{name}/make_bacula_tables
890%ghost %{_libexecdir}/%{name}/update_bacula_tables
891
892%files db-mysql
893%defattr(644,root,root,755)
aeaed87e 894%attr(755,root,root) %{_libexecdir}/%{name}/create_mysql_database
895%attr(755,root,root) %{_libexecdir}/%{name}/drop_mysql_database
896%attr(755,root,root) %{_libexecdir}/%{name}/drop_mysql_tables
897%attr(755,root,root) %{_libexecdir}/%{name}/grant_mysql_privileges
898%attr(755,root,root) %{_libexecdir}/%{name}/make_mysql_tables
899%attr(755,root,root) %{_libexecdir}/%{name}/update_mysql_*
6f3f1b78 900%attr(755,root,root) %{_libdir}/libbacsql-mysql-5*.so
41bc1b6e 901
6f3f1b78 902%ghost %attr(755,root,root) %{_libdir}/libbacsql-5*.so
41bc1b6e
JK
903%ghost %{_libexecdir}/%{name}/create_bacula_database
904%ghost %{_libexecdir}/%{name}/drop_bacula_tables
905%ghost %{_libexecdir}/%{name}/drop_bacula_database
906%ghost %{_libexecdir}/%{name}/grant_bacula_privileges
907%ghost %{_libexecdir}/%{name}/make_bacula_tables
908%ghost %{_libexecdir}/%{name}/update_bacula_tables
909
910%files db-sqlite3
911%defattr(644,root,root,755)
912%attr(755,root,root) %{_libexecdir}/%{name}/create_sqlite3_database
913%attr(755,root,root) %{_libexecdir}/%{name}/drop_sqlite3_database
914%attr(755,root,root) %{_libexecdir}/%{name}/drop_sqlite3_tables
915%attr(755,root,root) %{_libexecdir}/%{name}/grant_sqlite3_privileges
916%attr(755,root,root) %{_libexecdir}/%{name}/make_sqlite3_tables
917%attr(755,root,root) %{_libexecdir}/%{name}/update_sqlite3_*
6f3f1b78 918%attr(755,root,root) %{_libdir}/libbacsql-sqlite3-5*.so
41bc1b6e 919
6f3f1b78 920%ghost %attr(755,root,root) %{_libdir}/libbacsql-5*.so
41bc1b6e
JK
921%ghost %{_libexecdir}/%{name}/create_bacula_database
922%ghost %{_libexecdir}/%{name}/drop_bacula_tables
923%ghost %{_libexecdir}/%{name}/drop_bacula_database
924%ghost %{_libexecdir}/%{name}/grant_bacula_privileges
925%ghost %{_libexecdir}/%{name}/make_bacula_tables
926%ghost %{_libexecdir}/%{name}/update_bacula_tables
927
928%files db-dbi
929%defattr(644,root,root,755)
e090896a
JK
930%attr(755,root,root) %{_libexecdir}/%{name}/create_postgresql_database
931%attr(755,root,root) %{_libexecdir}/%{name}/drop_postgresql_database
932%attr(755,root,root) %{_libexecdir}/%{name}/drop_postgresql_tables
933%attr(755,root,root) %{_libexecdir}/%{name}/grant_postgresql_privileges
934%attr(755,root,root) %{_libexecdir}/%{name}/make_postgresql_tables
935%attr(755,root,root) %{_libexecdir}/%{name}/update_postgresql_*
41bc1b6e
JK
936%attr(755,root,root) %{_libexecdir}/%{name}/create_mysql_database
937%attr(755,root,root) %{_libexecdir}/%{name}/drop_mysql_database
938%attr(755,root,root) %{_libexecdir}/%{name}/drop_mysql_tables
939%attr(755,root,root) %{_libexecdir}/%{name}/grant_mysql_privileges
940%attr(755,root,root) %{_libexecdir}/%{name}/make_mysql_tables
941%attr(755,root,root) %{_libexecdir}/%{name}/update_mysql_*
942%attr(755,root,root) %{_libexecdir}/%{name}/create_sqlite3_database
943%attr(755,root,root) %{_libexecdir}/%{name}/drop_sqlite3_database
944%attr(755,root,root) %{_libexecdir}/%{name}/drop_sqlite3_tables
945%attr(755,root,root) %{_libexecdir}/%{name}/grant_sqlite3_privileges
946%attr(755,root,root) %{_libexecdir}/%{name}/make_sqlite3_tables
947%attr(755,root,root) %{_libexecdir}/%{name}/update_sqlite3_*
6f3f1b78 948%attr(755,root,root) %{_libdir}/libbacsql-dbi-5*.so
41bc1b6e 949
6f3f1b78 950%ghost %attr(755,root,root) %{_libdir}/libbacsql-5*.so
41bc1b6e 951
5ce18635
AM
952%files fd
953%defattr(644,root,root,755)
237bfacd 954%doc LICENSE
1b0a2248 955%attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/bacula-fd.conf
1a72afd2 956%attr(754,root,root) /etc/rc.d/init.d/bacula-fd
cd23ba7c 957%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/bacula-fd
5ff0b6a3 958%attr(755,root,root) %{_sbindir}/bacula-fd
7545e94f 959%attr(755,root,root) %{_libdir}/bpipe-fd.so
79d0fef6 960%{_mandir}/man8/bacula-fd.8*
5ce18635
AM
961
962%files sd
963%defattr(644,root,root,755)
237bfacd 964%doc LICENSE
1b0a2248 965%attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/bacula-sd.conf
0a03f92d 966%attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/mtx-changer.conf
1a72afd2 967%attr(754,root,root) /etc/rc.d/init.d/bacula-sd
cd23ba7c 968%config(noreplace) %verify(not md5 mtime size) /etc/sysconfig/bacula-sd
5ff0b6a3
AM
969%attr(755,root,root) %{_sbindir}/bacula-sd
970%attr(755,root,root) %{_sbindir}/bcopy
971%attr(755,root,root) %{_sbindir}/bextract
972%attr(755,root,root) %{_sbindir}/bls
973%attr(755,root,root) %{_sbindir}/bscan
974%attr(755,root,root) %{_sbindir}/btape
329073aa 975%attr(755,root,root) %{_libexecdir}/%{name}/mtx-changer
150db1c2 976%attr(755,root,root) %{_libexecdir}/%{name}/disk-changer
329073aa 977%attr(755,root,root) %{_libexecdir}/%{name}/dvd-handler
5ce18635 978%{_mandir}/man8/bacula-sd.8*
7425cb9d
JK
979%{_mandir}/man8/bcopy.8*
980%{_mandir}/man8/bextract.8*
981%{_mandir}/man8/bls.8*
982%{_mandir}/man8/bscan.8*
983%{_mandir}/man8/btape.8*
5ce18635
AM
984
985%files console
bb6e7dc5 986%defattr(644,root,root,755)
237bfacd 987%doc LICENSE
1b0a2248 988%attr(600,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/bconsole.conf
1a72afd2 989%attr(755,root,root) %{_sbindir}/bconsole
7425cb9d 990%{_mandir}/man8/bconsole.8*
5ce18635 991
1376b552 992%if %{with console_wx}
5ce18635
AM
993%files console-wx
994%defattr(644,root,root,755)
237bfacd 995%doc LICENSE
1a72afd2 996%{_pixmapsdir}/%{name}.png
237bfacd 997%{_desktopdir}/bacula-wx.desktop
3a5cd5d7 998%attr(640,root,bacula) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/bwx-console.conf
e3dd858d 999%attr(755,root,root) %{_sbindir}/bwx-console
1000%{_mandir}/man1/bacula-bwxconsole.1*
1376b552 1001%endif
bb6e7dc5 1002
304bb97e
AM
1003%if %{with bat}
1004%files console-qt4
1005%defattr(644,root,root,755)
1006%doc LICENSE
1007%{_pixmapsdir}/%{name}.png
1008%{_desktopdir}/bat.desktop
2264d68c 1009# Do not make this file world-readable or any user will get full access to the
b0473ed3 1010# backup system
2264d68c
JK
1011%attr(640,root,bacula) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/bat.conf
1012%attr(755,root,root) %{_bindir}/bat
304bb97e 1013%{_mandir}/man1/bat.1*
7545e94f 1014%{_docdir}/%{name}
304bb97e
AM
1015%endif
1016
cacc89f5 1017%if %{with console_wx}
237bfacd
JK
1018%files tray-monitor
1019%defattr(644,root,root,755)
1020%doc LICENSE
8ba087a4
ER
1021%attr(755,root,root) %{_sbindir}/bacula-tray-monitor
1022#%{_pixmapsdir}/%{name}-tray-monitor.xpm
1023#%{_desktopdir}/%{name}-tray-monitor.desktop
cd23ba7c 1024%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/tray-monitor.conf
7425cb9d 1025%{_mandir}/man1/bacula-tray-monitor.1*
cacc89f5 1026%endif
237bfacd 1027
2b68b0cb 1028%if %{with rescue}
bb6e7dc5
AM
1029%files rescue
1030%defattr(644,root,root,755)
c741b8e0 1031%doc LICENSE
4280e495 1032%dir %{_sysconfdir}/rescue
1b0a2248 1033%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/backup.etc.list
1034%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/bacula-fd
1035%attr(755,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/format_floppy
1036%attr(755,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/getdiskinfo
1037%attr(755,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/make_rescue_disk
1038%attr(755,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/restore_bacula
1039%attr(755,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/restore_etc
1040%attr(755,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/run_grub
1041%attr(755,root,root) %config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/run_lilo
1042%config(noreplace) %verify(not md5 mtime size) %{_sysconfdir}/rescue/sfdisk.bz2
2b68b0cb 1043%endif
b0473ed3
ER
1044
1045%if %{with nagios}
1046%files -n nagios-plugin-check_bacula
1047%defattr(644,root,root,755)
1048%attr(755,root,root) %{nagiosplugindir}/check_bacula
1049%endif
This page took 0.314924 seconds and 4 git commands to generate.