Changesets: bareos
bareos-13.2 ca2211ae 2013-08-07 14:36 Ported: N/A Details Diff |
Always print loaded plugins. | ||
mod - src/dird/ua_status.c | Diff File | ||
mod - src/filed/status.c | Diff File | ||
master fb6a8021 2013-08-07 11:18
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 | ||
master 6a4e8f7d 2013-08-07 11:18 Committer: 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/tools/bpluginfo.c | Diff File | ||
mod - src/stored/protos.h | Diff File | ||
mod - src/stored/label.c | Diff File | ||
mod - src/stored/dir_cmd.c | Diff File | ||
mod - src/stored/bscan.c | Diff File | ||
mod - src/stored/bcopy.c | Diff File | ||
mod - src/qt-tray-monitor/monitoritem.cpp | Diff File | ||
mod - src/qt-console/bcomm/dircomm.cpp | Diff File | ||
mod - src/lib/protos.h | Diff File | ||
mod - src/lib/bsock.h | Diff File | ||
mod - src/lib/bsock.c | Diff File | ||
mod - src/lib/bnet.c | Diff File | ||
mod - src/lib/address_conf.h | Diff File | ||
mod - src/lib/address_conf.c | Diff File | ||
mod - src/filed/dir_cmd.c | Diff File | ||
mod - src/dird/verify.c | Diff File | ||
mod - src/dird/vbackup.c | Diff File | ||
mod - src/dird/ua_update.c | Diff File | ||
mod - src/dird/ua_restore.c | Diff File | ||
mod - src/dird/ua_query.c | Diff File | ||
mod - src/dird/ua_dotcmds.c | Diff File | ||
mod - src/dird/ua_cmds.c | Diff File | ||
mod - src/dird/sd_cmds.c | Diff File | ||
mod - src/dird/restore.c | Diff File | ||
mod - src/dird/protos.h | Diff File | ||
mod - src/dird/ndmp_dma.c | Diff File | ||
mod - src/dird/msgchan.c | Diff File | ||
mod - src/dird/migrate.c | Diff File | ||
mod - src/dird/fd_cmds.c | Diff File | ||
mod - src/dird/backup.c | Diff File | ||
mod - src/console/console.c | Diff File | ||
mod - src/cats/sql_list.c | Diff File | ||
mod - src/cats/protos.h | Diff File | ||
bareos-13.2 fb7f360f 2013-08-06 16:25 Philipp Storz Committer: Marco van Wieringen 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 1076767e 2013-08-06 14:25 Committer: 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 fa71d1fe 2013-08-06 14:25 Committer: 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 | ||
master bb3cd2e0 2013-08-06 14:25 Committer: 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/dird/ua_cmds.c | Diff File | ||
mod - src/console/console.c | Diff File | ||
bareos-13.2 edfb9ba3 2013-08-02 19:25 Marco van Wieringen Ported: N/A Details Diff |
Always use CoInitializeEx with multithread option. | ||
mod - src/win32/filed/vss_generic.c | Diff File | ||
bareos-13.2 0f62233d 2013-08-02 17:45 Marco van Wieringen 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. |
||
mod - src/lib/jcr.c | Diff File | ||
mod - src/lib/message.c | Diff File | ||
bareos-13.2 5df824ee 2013-08-02 17:25
Ported: N/A Details Diff |
Always use CoInitializeEx with multithread option. | ||
mod - src/win32/filed/vss_generic.c | Diff File | ||
bareos-12.4 e5697dbe 2013-08-02 17:25
Ported: N/A Details Diff |
Always use CoInitializeEx with multithread option. | ||
mod - src/win32/filed/vss_generic.c | Diff File | ||
master 433c51bc 2013-08-02 17:25
Ported: N/A Details Diff |
Always use CoInitializeEx with multithread option. | ||
mod - src/win32/filed/vss_generic.c | Diff File | ||
bareos-13.2 6cba513c 2013-08-02 15:45
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 a55b07b6 2013-08-02 15:45
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 | ||
master 37b68af7 2013-08-02 15:45
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/message.c | Diff File | ||
mod - src/lib/jcr.c | Diff File | ||
master ce1996ae 2013-08-02 07:10
Ported: N/A Details Diff |
Bump version date. | ||
mod - src/include/version.h | Diff File | ||
master baef42b3 2013-08-01 17:18
Ported: N/A Details Diff |
Rebuild configure. | ||
mod - configure | Diff File | ||
master 8e635977 2013-08-01 17:11
Ported: N/A Details Diff |
Use modern autoconf idioms. Autoconf 2.59 says that AC_OUTPUT with arguments is obsolete Rewrite to use AC_CONFIG_FILES. |
||
mod - autoconf/configure.in | Diff File | ||
master 462b2c1f 2013-08-01 09:49
Ported: N/A Details Diff |
Tweak layout. Reformated comments and use bstrcasecmp. |
||
mod - src/lib/ini.h | Diff File | ||
mod - src/lib/ini.c | Diff File | ||
bareos-13.2 2c4a67de 2013-07-31 16:55 Philipp Storz Committer: Marco van Wieringen Ported: N/A Details Diff |
windows config files admin-only access Windows configuration files were accessible by normal users until now. Now we use the NSIS AccessControl Plugin (http://nsis.sourceforge.net/AccessControl_plug-in) to limit the access to the Administrator only. This also means that if you want to edit the config file, this has to happen as administrator. Fixes 0000208: Look into possibility to limit access rights on %APPDATA%/Bareos to administrators only. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
mod - platforms/win32/winbareos.nsi | Diff File | ||
master d414b2da 2013-07-31 14:55 Committer: Ported: N/A Details Diff |
windows config files admin-only access Windows configuration files were accessible by normal users until now. Now we use the NSIS AccessControl Plugin (http://nsis.sourceforge.net/AccessControl_plug-in) to limit the access to the Administrator only. This also means that if you want to edit the config file, this has to happen as administrator. Fixes 0000208: Look into possibility to limit access rights on %APPDATA%/Bareos to administrators only. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
Affected Issues 0000208 |
|
mod - platforms/win32/winbareos.nsi | Diff File | ||
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
bareos-13.2 7e2452a2 2013-07-31 14:55 Committer: mvwieringen Ported: N/A Details Diff |
windows config files admin-only access Windows configuration files were accessible by normal users until now. Now we use the NSIS AccessControl Plugin (http://nsis.sourceforge.net/AccessControl_plug-in) to limit the access to the Administrator only. This also means that if you want to edit the config file, this has to happen as administrator. Fixes 0000208: Look into possibility to limit access rights on %APPDATA%/Bareos to administrators only. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
Affected Issues 0000208 |
|
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
mod - platforms/win32/winbareos.nsi | Diff File | ||
bareos-12.4 3062026d 2013-07-31 14:55 Committer: mvwieringen Ported: N/A Details Diff |
windows config files admin-only access Windows configuration files were accessible by normal users until now. Now we use the NSIS AccessControl Plugin (http://nsis.sourceforge.net/AccessControl_plug-in) to limit the access to the Administrator only. This also means that if you want to edit the config file, this has to happen as administrator. Fixes 0000208: Look into possibility to limit access rights on %APPDATA%/Bareos to administrators only. Signed-off-by: Marco van Wieringen <marco.van.wieringen@bareos.com> |
Affected Issues 0000208 |
|
mod - platforms/win32/winbareos-nsi.spec | Diff File | ||
mod - platforms/win32/winbareos.nsi | Diff File | ||
bareos-13.2 8d83aaf7 2013-07-31 01:41 Marco van Wieringen Ported: N/A Details Diff |
Fix restore handling of NDMP when using wrong storage. For a NDMP restore its needed that the storage passed into the restore job is a storage definition with paired NDMP storage. When this is not the case the pstore pointer will remain NULL and we crash in the build_ndmp_job() function. Now we check if we have paired storage and also changed the cleanup somewhat so we don't try to close the bootstrap file etc when we didn't open it (which also lead to a segmentation fault.) |
||
mod - src/dird/ndmp_dma.c | Diff File | ||
bareos-13.2 1830e723 2013-07-30 23:41
Ported: N/A Details Diff |
Fix restore handling of NDMP when using wrong storage. For a NDMP restore its needed that the storage passed into the restore job is a storage definition with paired NDMP storage. When this is not the case the pstore pointer will remain NULL and we crash in the build_ndmp_job() function. Now we check if we have paired storage and also changed the cleanup somewhat so we don't try to close the bootstrap file etc when we didn't open it (which also lead to a segmentation fault.) |
||
mod - src/dird/ndmp_dma.c | Diff File |