Changesets: bareos

bareos-14.2 da8a368a

2016-01-11 16:15

pstorz


Committer: joergs

Ported: N/A

Details Diff
win32: Extra quote bsmtp call on windows

Fixes 0000581: Installer is setting up a wrong path to bmail.exe without
quotes / bmail not called
Affected Issues
0000581
mod - platforms/win32/fillup.sed Diff File

master dcb8c812

2016-01-11 12:49

Joerg Steffens

Ported: N/A

Details Diff
Makefile: better handling of subdirectories
mod - Makefile Diff File
mod - manuals/en/developers/Makefile Diff File
mod - manuals/en/main/Makefile Diff File

master 6fbad04b

2016-01-11 12:48

Joerg Steffens

Ported: N/A

Details Diff
cleanup block size references
mod - manuals/en/main/autochangers.tex Diff File
mod - manuals/en/main/bareos-sd-resource-device-definitions.tex Diff File
mod - manuals/en/main/bareos.sty Diff File
mod - manuals/en/main/director-resource-pool-definitions.tex Diff File

master 2fd2273c

2016-01-09 11:18

mvwieringen

Ported: N/A

Details Diff
Merge branch 'bareos-15.2'
mod - debian/bareos-database-common.config.in Diff File
mod - debian/bareos-database-common.postinst.in Diff File
mod - platforms/systemd/bareos-dir.service.in Diff File

master a14f284b

2016-01-08 19:51

mvwieringen

Ported: N/A

Details Diff
Merge branch 'master' of ssh://localhost:29418/bareos/bareos
mod - debian/bareos-director.bareos-dir.init.in Diff File
mod - debian/bareos-director.postinst.in Diff File
mod - debian/bareos-filedaemon.bareos-fd.init.in Diff File
mod - debian/bareos-filedaemon.postinst.in Diff File
mod - debian/bareos-storage.bareos-sd.init.in Diff File
mod - debian/bareos-storage.postinst.in Diff File
mod - scripts/bareos-config-lib.sh.in Diff File
mod - src/dird/dird_conf.c Diff File
mod - src/lib/unittests/sellist_test.c Diff File

master e12646df

2016-01-08 19:24

joergs

Ported: N/A

Details Diff
fix CamelCase typo: MaximumBlockSize
mod - src/dird/dird_conf.c Diff File

master e10a47bb

2016-01-08 18:26

mvwieringen

Ported: N/A

Details Diff
Merge branch 'bareos-15.2'
mod - platforms/win32/winbareos-nsi.spec Diff File
mod - platforms/win32/winbareos32.spec Diff File
mod - platforms/win32/winbareos64.spec Diff File

master 5dcfdac7

2016-01-08 18:12

joergs

Ported: N/A

Details Diff
Merge branch 'fix-format-sellist' of https://github.com/evgeni/bareos
mod - src/lib/unittests/sellist_test.c Diff File

master d00377c2

2016-01-08 18:11

joergs

Ported: N/A

Details Diff
Merge branch 'fix-bashisms' of https://github.com/evgeni/bareos
mod - debian/bareos-director.bareos-dir.init.in Diff File
mod - debian/bareos-director.postinst.in Diff File
mod - debian/bareos-filedaemon.bareos-fd.init.in Diff File
mod - debian/bareos-filedaemon.postinst.in Diff File
mod - debian/bareos-storage.bareos-sd.init.in Diff File
mod - debian/bareos-storage.postinst.in Diff File
mod - scripts/bareos-config-lib.sh.in Diff File

master 363610ef

2016-01-08 17:57

Joerg Steffens

Ported: N/A

Details Diff
cleanup Allow Duplicate Jobs
mod - manuals/en/main/director-resource-job-definitions.tex Diff File

master 954a9065

2016-01-08 17:38

Joerg Steffens

Ported: N/A

Details Diff
cleanup mysql python plugin description
mod - manuals/en/main/bareos.sty Diff File
mod - manuals/en/main/howto.tex Diff File

master 6a45e26e

2016-01-08 16:47

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
win32: Do signing only in winbareos-nsi package
mod - platforms/win32/winbareos-nsi.spec Diff File
mod - platforms/win32/winbareos32.spec Diff File
mod - platforms/win32/winbareos64.spec Diff File

master 966d6b83

2016-01-07 16:46

mvwieringen

Ported: N/A

Details Diff
win32: Fixes for POOLMEM ** to POOLMEM *&

Master uses POOLMEM *& while 15.2 still uses POOLMEM **
mod - src/win32/plugins/filed/mssqlvdi-fd.c Diff File

master 7f1fdd60

2016-01-07 16:45

mvwieringen

Ported: N/A

Details Diff
Merge branch 'bareos-15.2'
mod - AUTHORS Diff File
mod - src/cats/sql_create.c Diff File
mod - src/dird/dird_conf.c Diff File
mod - src/win32/plugins/filed/mssqlvdi-fd.c Diff File

master 3c5810f9

2016-01-06 17:29

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
bscan: Fix crash when filesettext is null

Fixes 0000573: rsync tape between bareos server
Affected Issues
0000573
mod - src/cats/sql_create.c Diff File

master 9a3d85f2

2016-01-06 16:50

Marco van Wieringen

Ported: N/A

Details Diff
dird: Remove fixed size reload table.

The current reload logic is really to complex and to limited for any
piece of software in 2016. This patch makes things seriously less
complex and also removes all kind of limitations. From a design
standpoint its certainly not an endpoint it would be better if we
would either have proper reference counting to the resources so we
actually know what is still referenced by any running Job on reload
or that we before calling job_end_push() try updating the dangling
pointers in the JCR to the old config to point to the new config and
only call job_end_push() when we are referencing resources that are no
longer available in the new config. If we succeed in updating all
pointers we are not referencing the old structures anymore and if we
succeed in doing that for all JCRs we can drop the old config and don't
need to keep it lingering around anymore.

For now this changes the following:
- Use proper structure to store the callback function and context
and not push two items on the cleanup stack.
- We use a set of two simple local variables that contain the previous
config and eventually a failed config, only when we are having any
Jobs running we do the hard work of allocating a more permanent
structure and pushing the cleanup routine and used context for a later
cleanup when the actual Job finishes. So when there is nothing running
the code path is rather straight forward.
mod - src/dird/dird.c Diff File
mod - src/include/jcr.h Diff File
mod - src/lib/jcr.c Diff File

master a4884e20

2016-01-06 16:13

mvwieringen

Ported: N/A

Details Diff
dird: Fix pretty printer to output Yes and No and not yes and no
mod - src/dird/dird_conf.c Diff File

bareos-14.2 fab6eade

2016-01-06 16:13

mvwieringen

Ported: N/A

Details Diff
dird: Fix pretty printer to output Yes and No and not yes and no
mod - src/dird/dird_conf.c Diff File

master 2975943b

2016-01-06 14:03

mvwieringen

Ported: N/A

Details Diff
dird: Fix pretty printing of Options blocks.

Print Options inside the for loop and also close it there.

Fixes 0000591: config pretty-printer does not print filesets correctly
Affected Issues
0000591
mod - src/dird/dird_conf.c Diff File

bareos-14.2 41fb810b

2016-01-06 14:03

mvwieringen

Ported: N/A

Details Diff
dird: Fix pretty printing of Options blocks.

Print Options inside the for loop and also close it there.

Fixes 0000591: config pretty-printer does not print filesets correctly
Affected Issues
0000591
mod - src/dird/dird_conf.c Diff File

master 5389d0d1

2016-01-04 11:04

Jyri Palis


Committer: mvwieringen

Ported: N/A

Details Diff
mssqlvdi: Fix IClientVirtualDeviceSet2::CreateEx call.

Seems we need to call IClientVirtualDeviceSet2::CreateEx with as first
argument the instance name when connecting to the an non default
instance.

Fixes 0000383: mssqldvi problem with connection to mssql not default
instance
Affected Issues
0000384
mod - AUTHORS Diff File
mod - src/win32/plugins/filed/mssqlvdi-fd.c Diff File

bareos-14.2 f3d86023

2016-01-04 11:04

Jyri Palis


Committer: mvwieringen

Ported: N/A

Details Diff
mssqlvdi: Fix IClientVirtualDeviceSet2::CreateEx call.

Seems we need to call IClientVirtualDeviceSet2::CreateEx with as first
argument the instance name when connecting to the an non default
instance.

Fixes 0000383: mssqldvi problem with connection to mssql not default
instance
Affected Issues
0000383
mod - AUTHORS Diff File
mod - src/win32/plugins/filed/mssqlvdi-fd.c Diff File

master 9fc293e5

2016-01-02 18:13

mvwieringen

Ported: N/A

Details Diff
docs: Update README.md
mod - README.md Diff File

master 89064871

2016-01-02 16:31

mvwieringen

Ported: N/A

Details Diff
docs: Update README.md
mod - README.md Diff File

master 556f551d

2016-01-02 16:14

mvwieringen

Ported: N/A

Details Diff
build: Bump version number.
mod - configure Diff File
mod - platforms/packaging/bareos-Univention_3.1.dsc Diff File
mod - platforms/packaging/bareos-Univention_3.2.dsc Diff File
mod - platforms/packaging/bareos-Univention_4.0.dsc Diff File
mod - platforms/packaging/bareos.changes Diff File
mod - platforms/packaging/bareos.dsc Diff File
mod - platforms/packaging/bareos.spec Diff File
mod - platforms/win32/mingw-debugsrc-devel.spec Diff File
mod - platforms/win32/winbareos-nsi.spec Diff File
mod - platforms/win32/winbareos32.spec Diff File
mod - platforms/win32/winbareos64.spec Diff File
mod - src/include/version.h Diff File
 First  Prev  1 2 3 ... 70 ... 140 ... 210 ... 280 ... 350 ... 420 ... 490 ... 546 547 548 549 550 551 552 ... 560 ... 630 ... 688 689 690  Next  Last