Changesets: bareos2015

bareos-14.2 71101c13

2013-08-09 14:24

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Fixed wrong directory for plugins in nsi installer

We created the Plugins Directory in the wrong location
before.

Now that is fixed

Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com>
mod - platforms/win32/winbareos.nsi Diff File

bareos-14.2 13f7a7d5

2013-08-09 12:02

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
windows plugin directory created and set in cfg.

The windows installer now creates also a directory
for plugins, ususally C:\Program Files\Bareos\Plugins

Also, this directory is set in the plugin directory comment
in the default bareos-fd.conf

Also, we now have a "compatible=no" comment in the fd.conf
that tells the user that for new bareos features this has to
be set to no to disable the Bacula compatible mode.

Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com>
mod - platforms/win32/fillup.sed Diff File
mod - platforms/win32/winbareos.nsi Diff File
mod - src/filed/bareos-fd.conf.in Diff File

bareos-13.2 887107d4

2013-08-09 12:02

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
windows plugin directory created and set in cfg.

The windows installer now creates also a directory
for plugins, ususally C:\Program Files\Bareos\Plugins

Also, this directory is set in the plugin directory comment
in the default bareos-fd.conf

Also, we now have a "compatible=no" comment in the fd.conf
that tells the user that for new bareos features this has to
be set to no to disable the Bacula compatible mode.

Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com>
mod - platforms/win32/fillup.sed Diff File
mod - platforms/win32/winbareos.nsi Diff File
mod - src/filed/bareos-fd.conf.in Diff File

bareos-12.4 0849631e

2013-08-09 12:02

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
windows plugin directory created and set in cfg.

The windows installer now creates also a directory
for plugins, ususally C:\Program Files\Bareos\Plugins

Also, this directory is set in the plugin directory comment
in the default bareos-fd.conf

Also, we now have a "compatible=no" comment in the fd.conf
that tells the user that for new bareos features this has to
be set to no to disable the Bacula compatible mode.

Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com>
mod - platforms/win32/fillup.sed Diff File
mod - platforms/win32/winbareos.nsi Diff File
mod - src/filed/bareos-fd.conf.in Diff File

bareos-14.2 cb68cb44

2013-08-08 23:22

mvwieringen

Ported: N/A

Details Diff
Fail restore job when plugin options and no support.

When we need to send plugin options to a FD and it has a to low version
fail the restore job so the backup operator knows he needs to upgrade
its client (or disable the compatible option) of the target FD.
mod - src/dird/restore.c Diff File

bareos-13.2 00659a9a

2013-08-08 23:22

mvwieringen

Ported: N/A

Details Diff
Fail restore job when plugin options and no support.

When we need to send plugin options to a FD and it has a to low version
fail the restore job so the backup operator knows he needs to upgrade
its client (or disable the compatible option) of the target FD.
mod - src/dird/restore.c Diff File

bareos-14.2 32f9ae2e

2013-08-07 21:25

mvwieringen

Ported: N/A

Details Diff
Some keywords are only allowed in fileselection mode.

We now always send the BNET_START_RTREE and BNET_END_RTREE signals
even when the api mode is not enabled. This way bconsole also knows
when its in file selection mode and the tab expansion can show the
only expand keywords allowed in a certain mode. e.g. no more cd
and ls expansion when not in file selection mode which leads to
the dreaded "*cd .lsdir: is an invalid command." and
"*ls .ls: is an invalid command."
mod - src/console/console.c Diff File
mod - src/dird/ua_tree.c Diff File

bareos-14.2 67190b12

2013-08-07 21:24

mvwieringen

Ported: N/A

Details Diff
Allow restoreoptions to be specified with restore.
mod - src/dird/ua.h Diff File
mod - src/dird/ua_restore.c Diff File
mod - src/dird/ua_run.c Diff File

bareos-13.2 222e4dfb

2013-08-07 21:24

mvwieringen

Ported: N/A

Details Diff
Allow restoreoptions to be specified with restore.
mod - src/dird/ua.h Diff File
mod - src/dird/ua_restore.c Diff File
mod - src/dird/ua_run.c Diff File

bareos-14.2 e59ba5d2

2013-08-07 21:23

mvwieringen

Ported: N/A

Details Diff
Add the still missing keyword for run and restore.
mod - src/dird/ua_cmds.c Diff File

bareos-14.2 005b2600

2013-08-07 16:36

mvwieringen

Ported: N/A

Details Diff
Always print loaded plugins.
mod - src/dird/ua_status.c Diff File
mod - src/filed/status.c Diff File

bareos-13.2 a2b1c0c0

2013-08-07 16:36

mvwieringen

Ported: N/A

Details Diff
Always print loaded plugins.
mod - src/dird/ua_status.c Diff File
mod - src/filed/status.c Diff File

bareos-14.2 07aff263

2013-08-07 13:18

mvwieringen

Ported: N/A

Details Diff
Use ; to seperate fields in address instead of :.

Now that IPV6 is more and more common use a semicolon instead
of a colon as seperator for the different fields of an address.
mod - src/lib/address_conf.c Diff File

bareos-14.2 3565d3de

2013-08-07 13:18

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Add command for doing a name resolution on client.

Resolve command now can resolve given hostname(s) on director, client
and storage daemon if specified.

examples:

* resolution on director:
resolve www.bareos.com
> gonzo-dir resolves www.bareos.com to host[ipv4:84.44.166.242]

* resolution on client:
resolve client=gonzo.bareos.com-fd www.bareos.com
> gonzo-fd resolves www.bareos.com to host[ipv4:84.44.166.242]

* resolution on storage:
resolve storage=File www.bareos.com
> gonzo-sd resolves www.bareos.com to host[ipv4:84.44.166.242]

Fixes 0000181: Add command for doing a name resolution on client.

Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com>
Affected Issues
0000181
mod - src/cats/protos.h Diff File
mod - src/cats/sql_list.c Diff File
mod - src/console/console.c Diff File
mod - src/dird/backup.c Diff File
mod - src/dird/fd_cmds.c Diff File
mod - src/dird/migrate.c Diff File
mod - src/dird/msgchan.c Diff File
mod - src/dird/ndmp_dma.c Diff File
mod - src/dird/protos.h Diff File
mod - src/dird/restore.c Diff File
mod - src/dird/sd_cmds.c Diff File
mod - src/dird/ua_cmds.c Diff File
mod - src/dird/ua_dotcmds.c Diff File
mod - src/dird/ua_query.c Diff File
mod - src/dird/ua_restore.c Diff File
mod - src/dird/ua_update.c Diff File
mod - src/dird/vbackup.c Diff File
mod - src/dird/verify.c Diff File
mod - src/filed/dir_cmd.c Diff File
mod - src/lib/address_conf.c Diff File
mod - src/lib/address_conf.h Diff File
mod - src/lib/bnet.c Diff File
mod - src/lib/bsock.c Diff File
mod - src/lib/bsock.h Diff File
mod - src/lib/protos.h Diff File
mod - src/qt-console/bcomm/dircomm.cpp Diff File
mod - src/qt-tray-monitor/monitoritem.cpp Diff File
mod - src/stored/bcopy.c Diff File
mod - src/stored/bscan.c Diff File
mod - src/stored/dir_cmd.c Diff File
mod - src/stored/label.c Diff File
mod - src/stored/protos.h Diff File
mod - src/tools/bpluginfo.c Diff File

bareos-14.2 495c727f

2013-08-06 16:25

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Enhanced help for run and restore command

Many available parameters for the restore and
run commands were missing in the help info and so
also in the <tab-tab> completion.

Now we should have hopefully all useful parameters documented
for run and restore.

Also, the tab-completion for "backupclient" and "restoreclient" now
works as it calls ".client"

Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com>
mod - src/console/console.c Diff File
mod - src/dird/ua_cmds.c Diff File

bareos-13.2 fb7f360f

2013-08-06 16:25

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Enhanced help for run and restore command

Many available parameters for the restore and
run commands were missing in the help info and so
also in the <tab-tab> completion.

Now we should have hopefully all useful parameters documented
for run and restore.

Also, the tab-completion for "backupclient" and "restoreclient" now
works as it calls ".client"

Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com>
mod - src/console/console.c Diff File
mod - src/dird/ua_cmds.c Diff File

bareos-12.4 a9cfb6bb

2013-08-06 16:25

pstorz


Committer: mvwieringen

Ported: N/A

Details Diff
Enhanced help for run and restore command

Many available parameters for the restore and
run commands were missing in the help info and so
also in the <tab-tab> completion.

Now we should have hopefully all useful parameters documented
for run and restore.

Also, the tab-completion for "backupclient" and "restoreclient" now
works as it calls ".client"

Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com>
mod - src/console/console.c Diff File
mod - src/dird/ua_cmds.c Diff File

bareos-14.2 770d1a6b

2013-08-02 19:25

mvwieringen

Ported: N/A

Details Diff
Always use CoInitializeEx with multithread option.
mod - src/win32/filed/vss_generic.c Diff File

bareos-13.2 edfb9ba3

2013-08-02 19:25

mvwieringen

Ported: N/A

Details Diff
Always use CoInitializeEx with multithread option.
mod - src/win32/filed/vss_generic.c Diff File

bareos-12.4 1ab377d5

2013-08-02 19:25

mvwieringen

Ported: N/A

Details Diff
Always use CoInitializeEx with multithread option.
mod - src/win32/filed/vss_generic.c Diff File

bareos-14.2 10347c41

2013-08-02 17:45

mvwieringen

Ported: N/A

Details Diff
Filed doesn't respond to first connection after start.

The setup of the thread specific key is flawed. In essence
its setup twice (once via the init_msg() call and once
via the pthread_once call in jcr.c). This new code fixes
that by:

- Setup thread specific data key only once.
- Use pthread_key_create_once_np when available.
This is a non portable but cleaner implementation of
both a pthread_once() and a pthread_key_create().
- For Windows use a workaround around pthread_once() as that
seems to hang for unknown reason. Now we use a boolean
protected by an mutex to make sure the setup is only done once.

Fixes 0000210: Filed doesn't respond to first connection after start.
Affected Issues
0000210
mod - src/lib/jcr.c Diff File
mod - src/lib/message.c Diff File

bareos-13.2 0f62233d

2013-08-02 17:45

mvwieringen

Ported: N/A

Details Diff
Filed doesn't respond to first connection after start.

The setup of the thread specific key is flawed. In essence
its setup twice (once via the init_msg() call and once
via the pthread_once call in jcr.c). This new code fixes
that by:

- Setup thread specific data key only once.
- Use pthread_key_create_once_np when available.
This is a non portable but cleaner implementation of
both a pthread_once() and a pthread_key_create().
- For Windows use a workaround around pthread_once() as that
seems to hang for unknown reason. Now we use a boolean
protected by an mutex to make sure the setup is only done once.

Fixes 0000210: Filed doesn't respond to first connection after start.
Affected Issues
0000210
mod - src/lib/jcr.c Diff File
mod - src/lib/message.c Diff File

bareos-12.4 689e3335

2013-08-02 17:45

mvwieringen

Ported: N/A

Details Diff
Filed doesn't respond to first connection after start.

The setup of the thread specific key is flawed. In essence
its setup twice (once via the init_msg() call and once
via the pthread_once call in jcr.c). This new code fixes
that by:

- Setup thread specific data key only once.
- Use pthread_key_create_once_np when available.
This is a non portable but cleaner implementation of
both a pthread_once() and a pthread_key_create().
- For Windows use a workaround around pthread_once() as that
seems to hang for unknown reason. Now we use a boolean
protected by an mutex to make sure the setup is only done once.

Fixes 0000210: Filed doesn't respond to first connection after start.
Affected Issues
0000210
mod - src/lib/jcr.c Diff File
mod - src/lib/message.c Diff File

bareos-14.2 6dbdbaee

2013-08-02 09:10

mvwieringen

Ported: N/A

Details Diff
Bump version date.
mod - src/include/version.h Diff File

bareos-14.2 50214e57

2013-08-01 19:18

mvwieringen

Ported: N/A

Details Diff
Rebuild configure.
mod - configure Diff File
 First  Prev  1 2 3 ... 10 ... 20 ... 30 ... 35 36 37 38 39 40 41 ... 50 ... 57 58 59  Next  Last