Changesets: bareos

master eae7ad95

2017-05-11 16:01

frank


Committer: pstorz

Ported: N/A

Details Diff
bconsole: joblevel argument for the (l)list cmd

This adds a joblevel argument to the (l)list
command for the list jobs context.
mod - src/cats/cats.h Diff File
mod - src/cats/sql_list.c Diff File
mod - src/dird/protos.h Diff File
mod - src/dird/ua_cmds.c Diff File
mod - src/dird/ua_output.c Diff File
mod - src/dird/ua_select.c Diff File

master 5782c7f0

2017-05-08 16:00

Frank Bergkemper


Committer: Joerg Steffens

Ported: N/A

Details Diff
bconsole: Adds missing run command arguments
mod - manuals/en/main/bconsole.tex Diff File

master 6f27e7df

2017-05-05 19:52

joergs

Ported: N/A

Details Diff
debian: changed postgresql database owner

Allows dbconfig-common database updates to Bareos DB version 2170.
PostgreSQL needs special handling.
mod - autoconf/Make.common.in Diff File
mod - autoconf/configure.in Diff File
mod - debian/bareos-database-common.config.in Diff File
mod - debian/bareos-database-common.postinst.in Diff File
add - debian/bareos-database-postgresql.dirs.in Diff File
mod - debian/bareos-database-postgresql.install.in Diff File
mod - platforms/debian/Makefile.in Diff File
add - platforms/debian/dbconfig-common/scripts/bareos-database-common/upgrade/pgsql/2170 Diff File
add - src/cats/ddl/grants/postgresql-change_owner.dbconfig-template.sql Diff File

master 7362f023

2017-05-05 00:08

stephand

Ported: N/A

Details Diff
Fix .bvfs_lsdirs
mod - src/cats/bvfs.c Diff File

master b615e66d

2017-05-04 17:54

Frank Bergkemper

Ported: N/A

Details Diff
Bumb version number
mod - version.txt Diff File

bareos-16.2 3d0a1a0a

2017-05-04 14:43

pstorz


Committer: joergs

Ported: N/A

Details Diff
bcommand: fix problems with multiple storages

Unfortunately, the storage abstraction layer introduced
some problems with storage handling when multiple storages
are defined.

The code that connects to the sd uses the storage stored in
ua->jcr->res.wstore, but not all code sets this to the currently
requested storage.

This patch fixes this problem by taking care that the
given storage is set as ua->jcr->res.wstore

Fixes 0000746: Status storage slots picks wrong storage daemon
Affected Issues
0000746
mod - src/dird/sd_cmds.c Diff File
mod - src/dird/ua_label.c Diff File
mod - src/dird/ua_purge.c Diff File
mod - src/dird/ua_status.c Diff File

bareos-17.2 964ef032

2017-05-03 17:35

mpiejh


Committer: joergs

Ported: N/A

Details Diff
updated MySQL creation schema to current standards Affected Issues
0000705
mod - src/cats/ddl/creates/mysql.sql Diff File

bareos-16.2 6a2fda97

2017-05-03 17:35

mpiejh


Committer: pstorz

Ported: N/A

Details Diff
updated MySQL creation schema to current standards
mod - src/cats/ddl/creates/mysql.sql Diff File

master 8c25b7ef

2017-05-02 20:15

stephand


Committer: joergs

Ported: N/A

Details Diff
Adapted for DB schema upgrade to version 2170
mod - src/cats/cats.h Diff File
mod - src/cats/ddl/creates/ingres.sql Diff File
mod - src/cats/ddl/creates/mysql.sql Diff File
mod - src/cats/ddl/creates/postgresql.sql Diff File
mod - src/cats/ddl/creates/sqlite3.sql Diff File
rm - src/cats/ddl/drops/postgresql.bee.1017_2004.sql Diff File
mod - src/cats/ddl/grants/ingres-readonly.sql Diff File
mod - src/cats/ddl/grants/ingres.sql Diff File
mod - src/cats/ddl/grants/postgresql-readonly.sql Diff File
mod - src/cats/ddl/grants/postgresql.sql Diff File
add - src/cats/ddl/updates/mysql.2004_2170.sql Diff File
add - src/cats/ddl/updates/postgresql.2004_2170.sql Diff File
add - src/cats/ddl/updates/sqlite3.2004_2170.sql Diff File
mod - src/cats/ddl/versions.map.in Diff File

master fdf59b5c

2017-04-28 12:36

pstorz

Ported: N/A

Details Diff
git: ignore scope and etags db files
mod - .gitignore Diff File

master 3ce8d8e2

2017-04-28 12:10

pstorz

Ported: N/A

Details Diff
Updated AUTHORS file
mod - AUTHORS Diff File

master eb284051

2017-04-28 12:08

pstorz

Ported: N/A

Details Diff
Merge branch 'wangchuan2008888-master'
mod - src/tools/bregex.c Diff File

master e53b4262

2017-04-28 12:07

pstorz

Ported: N/A

Details Diff
Merge branch 'master' of https://github.com/wangchuan2008888/bareos into wangchuan2008888-master
mod - src/tools/bregex.c Diff File

bareos-16.2 fc180eed

2017-04-28 11:31

stephand

Ported: N/A

Details Diff
Fix .bvfs_lsdirs: Don't show empty dirs from accurate jobs

The SQL Query used by .bvfs_lsdirs did not consider the FileIndex
column, which is 0 for deleted directories in accurate backup jobs,
so that empty directories were returned by .bvfs_lsdirs.
mod - src/cats/bvfs.c Diff File

master d554b454

2017-04-28 01:50

pstorz

Ported: N/A

Details Diff
Fix windows build after readdir_r() removal
mod - src/win32/compat/include/compat.h Diff File

master aebf24d3

2017-04-27 21:58

pstorz

Ported: N/A

Details Diff
remove deprecated readdir_r() calls

since glibc version 2.24, readdir_r() is deprecated.

From the manpage of readdir_r():

It is expected that a future version of POSIX.1 will make
readdir_r() obsolete, and require that readdir() be thread-safe
when concurrently employed on different directory streams.

By defining "USE_READDIR_R" the old code is still available
in case it is needed on certain platforms.
mod - src/dird/dird.c Diff File
mod - src/findlib/find.h Diff File
mod - src/findlib/find_one.c Diff File
mod - src/lib/plugins.c Diff File
mod - src/stored/backends/unix_fifo_device.c Diff File
mod - src/win32/compat/compat.c Diff File
mod - src/win32/compat/glob.c Diff File
mod - src/win32/stored/backends/win32_fifo_device.c Diff File
mod - src/win32/stored/backends/win32_file_device.c Diff File

master 971396b2

2017-04-27 19:08

joergs

Ported: N/A

Details Diff
output_formatter: improve error message

If sending a message failed, include the message in the error
message, if it has been short.
mod - src/lib/output_formatter.c Diff File
mod - src/lib/output_formatter.h Diff File

master 89ba11ba

2017-04-27 19:08

joergs

Ported: N/A

Details Diff
deprecate the OmitDefaults setting

Specifiying OmitDefaults in the configuration does not make much sense.
Therefore we mark this directive as deprecated, so we can remove it
later on.
You can use "show verbose" instead.
mod - src/dird/dird_conf.c Diff File

master 44fc474a

2017-04-27 19:08

joergs

Ported: N/A

Details Diff
Replace sponsor information by link to bareos.com

Instead of maintaining information about sponsors at several places,
information are now only kept at https://www.bareos.com/en/sponsors.html
Therefore information here are replaced by a link to that page.
mod - SPONSORS.md Diff File

master c58c71a2

2017-04-27 18:07

pstorz

Ported: N/A

Details Diff
refactor: naming of "job end callback list"

The names of variables and functions for the
job end callback functionality was absurd.

This commit tries to use better names that make
the whole functionality understandable.
mod - src/dird/dird.c Diff File
mod - src/dird/job.c Diff File
mod - src/include/jcr.h Diff File
mod - src/lib/jcr.c Diff File
mod - src/lib/protos.h Diff File

bareos-16.2 83b2f678

2017-04-27 16:55

joergs

Ported: N/A

Details Diff
git: reduced size of log file generated during build
mod - scripts/git-info.sh Diff File

master 864ce894

2017-04-27 15:54

pstorz

Ported: N/A

Details Diff
Fixed jobstatistics command help typo
mod - src/dird/ua_cmds.c Diff File

master 3c78a52f

2017-04-26 20:33

pstorz

Ported: N/A

Details Diff
windows installer build: parallelize build of different flavors

We now run the 32/64bit of debug/production in parallel
running subshells.

Also, we do not sign the program dlls and exes anymore, only
we sign the installers.

This should speed up the windows package generation very much as
this is now the longest part of the build process.
mod - platforms/win32/winbareos-nsi.spec Diff File

master 53183f82

2017-04-26 19:42

Frank Bergkemper

Ported: N/A

Details Diff
Updated AUTHORS
mod - AUTHORS Diff File

master 38c9b384

2017-04-26 18:23

Frank Bergkemper

Ported: N/A

Details Diff
Dashboard: Partial replacement and autorefresh

- Replaces the jqplot based 24h jobs status partial
- Reorders current available partials on the dashboard
- Adds autorefresh to all partials via ajax interval call
mod - module/Dashboard/src/Dashboard/Controller/DashboardController.php Diff File
mod - module/Dashboard/view/dashboard/dashboard/index.phtml Diff File
mod - module/Dashboard/view/partial/JobsLastStatus.phtml Diff File
mod - module/Dashboard/view/partial/JobsPast24h.phtml Diff File
mod - module/Dashboard/view/partial/LastDirectorMessages.phtml Diff File
 First  Prev  1 2 3 ... 60 ... 120 ... 180 ... 240 ... 300 ... 360 ... 420 ... 427 428 429 430 431 432 433 ... 480 ... 540 ... 600 ... 607 608 609  Next  Last