Changesets: bareos
master 51e4d8ef 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Fix compiler warning. Now that we don't use the old conversion string we can get ride of the caps variable. |
||
mod - src/lib/bsnprintf.c | Diff File | ||
master dde644a3 2013-05-04 13:51 Joerg Steffens Committer: Marco van Wieringen Ported: N/A Details Diff |
fixes ubuntu configuration Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - autoconf/configure.in | Diff File | ||
master 16b15624 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Fix Makefile rules for generating configure and config.h.in | ||
mod - Makefile.in | Diff File | ||
master d786e1bd 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Set some more sane defaults. Still its better to explicitly set the dirs to where you want them to be and to not depend on changing defaults. |
||
mod - autoconf/configure.in | Diff File | ||
master 6d7e2517 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Drop temp file. | ||
rm - src/qt-console/aa | Diff File | ||
master c2ec319a 2013-05-04 13:51 RadosÅaw Korzeniewski Committer: Marco van Wieringen Ported: N/A Details Diff |
Fix %f conversion in bsnprintf. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - src/lib/bsnprintf.c | Diff File | ||
master d3185187 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Fix conversion string in bsnprintf. It makes no sense to use a string "0123456789ABCDEF" when you do all calculating using a modulo 10 divide which only gives the spread from 0 to 9. As we don't need the hex letters we can also drop the check on caps as figures are either upper or lower case. |
||
mod - src/lib/bsnprintf.c | Diff File | ||
master 989193c2 2013-05-04 13:51 Philipp Storz Committer: Marco van Wieringen Ported: N/A Details Diff |
Ignore affected rows in UPDATE_DB We get an error message from UPDATE_DB , when the number of affected rows is < 1. In some cases, its ok to have no affected rows, like in "update all volumes from all pools", when there is a pool with no volumes inside. Fixes 0000062: update all volumes from all pools gives error when a pool doesnt contain volumes Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - src/cats/cats.h | Diff File | ||
mod - src/cats/sql.c | Diff File | ||
mod - src/cats/sql_update.c | Diff File | ||
master ffe74338 2013-05-04 13:51 aussendorf Committer: Marco van Wieringen Ported: N/A Details Diff |
Update README.md typos and one comment |
||
mod - README.md | Diff File | ||
master 01f19a01 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Fix NDMP library vendor name. | ||
mod - src/ndmp/Makefile.in | Diff File | ||
mod - src/ndmp/ndmos_common.c | Diff File | ||
master f91dd0a3 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Bump version for first public beta. | ||
mod - README.md | Diff File | ||
mod - configure | Diff File | ||
mod - debian/changelog | Diff File | ||
mod - platforms/deb/bareos-Debian_6.0.dsc | Diff File | ||
mod - platforms/deb/bareos-xUbuntu_12.04.dsc | Diff File | ||
mod - platforms/rpms/bareos.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 | ||
master c06b1f8a 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Fix compile error. | ||
mod - src/stored/ndmp_tape.c | Diff File | ||
master 0b17ed0a 2013-05-04 13:51 Joerg Steffens Committer: Marco van Wieringen Ported: N/A Details Diff |
add-database-creation-scripts Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - debian/bareos-database-common.install | Diff File | ||
mod - debian/bareos-director.install | Diff File | ||
mod - platforms/rpms/bareos.spec | Diff File | ||
master 9e1f189d 2013-05-04 13:51 Joerg Steffens Committer: Marco van Wieringen Ported: N/A Details Diff |
adapted for ubuntu removed build dependency to libsqlite0-dev, because it is not available on Ubuntu (and not used anyway?) Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - debian/control | Diff File | ||
add - platforms/deb/bareos-xUbuntu_12.04.dsc | Diff File | ||
master 5f45faed 2013-05-04 13:51 Joerg Steffens Committer: Marco van Wieringen Ported: N/A Details Diff |
bareos-database-postgresql depends on postgresql-client Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - debian/control | Diff File | ||
master 71ac15af 2013-05-04 13:51 Philipp Storz Committer: Marco van Wieringen Ported: N/A Details Diff |
call the initialize_passwords in bconsole Installing the bconsole didn't call the initialize_passwords call. Now bconsole and traymonitor packages do that |
||
mod - platforms/rpms/bareos.spec | Diff File | ||
master 1073835c 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Tear down of daemons is flawed. When one of the servers is teared down in most daemons the thread spawned for handling the bnet_thread_server or the main thread never closes all sockets and releases the workq as most of the time the thread is just shot inflight and as a side effect things get cleaned up. When the process exits resources are released but its not very clean. Fixes 0000053: Tear down of daemons is flawed. |
||
mod - src/dird/dird.c | Diff File | ||
mod - src/dird/job.c | Diff File | ||
mod - src/dird/ua_server.c | Diff File | ||
mod - src/filed/filed.c | Diff File | ||
mod - src/lib/bnet_server.c | Diff File | ||
mod - src/lib/protos.h | Diff File | ||
mod - src/stored/ndmp_tape.c | Diff File | ||
mod - src/stored/stored.c | Diff File | ||
master 4f77f49f 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Loose some trademark. We want the text about the trademark only in the LICENSE file and in the about popup windows. |
||
mod - scripts/disk-changer.in | Diff File | ||
mod - src/cats/make_catalog_backup.pl.in | Diff File | ||
mod - src/cats/myingres.sc | Diff File | ||
mod - src/cats/myingres.sh | Diff File | ||
mod - src/include/host.h.in | Diff File | ||
mod - src/qt-console/aa | Diff File | ||
mod - src/qt-console/mainwin.cpp | Diff File | ||
bareos-12.4 2825a9e1 2013-05-04 13:51 Philipp Storz Committer: Marco van Wieringen Ported: N/A Details Diff |
call the initialize_passwords in bconsole Installing the bconsole didn't call the initialize_passwords call. Now bconsole and traymonitor packages do that |
||
mod - platforms/rpms/bareos.spec | Diff File | ||
bareos-12.4 fc9ba4ca 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Tear down of daemons is flawed. When one of the servers is teared down in most daemons the thread spawned for handling the bnet_thread_server or the main thread never closes all sockets and releases the workq as most of the time the thread is just shot inflight and as a side effect things get cleaned up. When the process exits resources are released but its not very clean. Fixes 0000053: Tear down of daemons is flawed. |
||
mod - src/dird/dird.c | Diff File | ||
mod - src/dird/job.c | Diff File | ||
mod - src/dird/ua_server.c | Diff File | ||
mod - src/filed/filed.c | Diff File | ||
mod - src/lib/bnet_server.c | Diff File | ||
mod - src/lib/protos.h | Diff File | ||
mod - src/stored/ndmp_tape.c | Diff File | ||
mod - src/stored/stored.c | Diff File | ||
bareos-12.4 bf2183b4 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Loose some trademark. We want the text about the trademark only in the LICENSE file and in the about popup windows. |
||
mod - scripts/disk-changer.in | Diff File | ||
mod - src/cats/make_catalog_backup.pl.in | Diff File | ||
mod - src/cats/myingres.sc | Diff File | ||
mod - src/cats/myingres.sh | Diff File | ||
mod - src/include/host.h.in | Diff File | ||
mod - src/qt-console/aa | Diff File | ||
mod - src/qt-console/mainwin.cpp | Diff File | ||
master 7969af66 2013-05-04 13:51 Kjetil Torgrim Homme Committer: Marco van Wieringen Ported: N/A Details Diff |
Allow slash in volume names In the past, I have had problems with restores failing due to the device for differential volumes can't find the volumes stored by the incremental. I also have not been quite satisfied with having all the files in one large directory without a structure, e.g., when I have different retention policy for some volumes. My fix is quite simple: add '/' to the list of acceptable characters in a volume name. this allows me to specify the same Archive Device for all the file media devices, and do the separation with Label Format like "incr/Incr-". Restore is unproblematic in this setup, since any Device can be used to access all the volumes (even if they are actually in different filesystems, due to the structure of my mounts). Signed-off-by: Marco van Wieringen <mvw@planets.elm.net> |
||
mod - src/dird/ua_label.c | Diff File | ||
mod - src/stored/scan.c | Diff File | ||
master b864111c 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Tweak fix compile error. | ||
mod - src/dird/ua_dotcmds.c | Diff File | ||
master 169865e4 2013-05-04 13:51 Marco van Wieringen Ported: N/A Details Diff |
Fix typo. Fixes 0000054: make_catalog_backup.pl tries to call /usr/sbin/bareos_dbcheck, must be /usr/sbin/bareos-dbcheck |
||
mod - src/cats/make_catalog_backup.pl.in | Diff File | ||
master 3a3aff50 2013-05-04 13:51 Philipp Storz Committer: Marco van Wieringen Ported: N/A Details Diff |
removed installation of traymonitor as we have still some problems with the traymonitor, we dont offer to install it. |
||
mod - platforms/win32/winbareos.nsi | Diff File |