print host_os
print distname
print distver
+print host_name
bt
thread apply all bt
f 0
{"hfsplussupport", store_opts, {0}, 0, 0, 0},
{"noatime", store_opts, {0}, 0, 0, 0},
{"enhancedwild", store_opts, {0}, 0, 0, 0},
- {"drivetype", store_drivetype, {0}, 0, 0, 0},
- {"checkfilechanges",store_opts, {0}, 0, 0, 0},
+ {"drivetype", store_drivetype, {0}, 0, 0, 0},
+ {"checkfilechanges",store_opts, {0}, 0, 0, 1},
{"strippath", store_opts, {0}, 0, 0, 0},
{"honornodumpflag", store_opts, {0}, 0, 0, 0},
{NULL, NULL, {0}, 0, 0, 0}
time_t daemon_start_time = 0; /* Daemon start time */
const char *version = VERSION " (" BDATE ")";
char my_name[30]; /* daemon name is stored here */
+char host_name[50]; /* host machine name */
char *exepath = (char *)NULL;
char *exename = (char *)NULL;
int console_msg_pending = false;
char cpath[1024];
int len;
+ if (gethostname(host_name, sizeof(host_name)) != 0) {
+ bstrncpy(host_name, "Hostname unknown", sizeof(host_name));
+ }
bstrncpy(my_name, name, sizeof(my_name));
if (argc>0 && argv && argv[0]) {
/* strip trailing filename and save exepath */
New features:
-*Accurate files
-*TLS authentication
-*bextract Win32 data
-*Run afterVSS
-*Multiple command/console per runscript
-*console command in runscript
*Bat API
Plugin API
-*State file updated on job term
PluginOptions
FD Version
-*Duplicate Job directives
- - Allow Duplicate Jobs
- - Allow Higher Duplicates
- - Cancel Queued Duplicates
- - Cancel Running Duplicates
- Ensure they work with RerunFailedLevels
-*MaxFullInterval
-*MaxDiffInterval
-*Honor nodump flag
-*Improved status commands for Bat
-*Spooling/despooling status
Implement ftruncate for NFS devices
-*Add long term statistics job table
-* (Use Statistics)
-*vtape driver
-*Ignore Dir
separator in console (!$%&'()*+,-/:;<>?[]^`{|}~)
-*Copy jobs
examples/database/dbcheck.sql
dbi database driver
--enable-libdb
dbdriver in bacula-dir.conf
--with-db-port
support for Ubuntu
-*status_slots
-*spoolSize by Job
recyclepool in dird/ua_select.co???
enhancement to wait command: wait mount ...
parse config
differentialmaxruntime???
incrementalmaxruntime???
optimizejobscheduling???
-*spoolsize
-*usestatistics
pluginoptions
plugin
+checkfilechanges default = yes.
remove reader/writer in FOPTS????
General:
+13Sep08
+kes Add host name to items printed during dump.
+kes Make Check File Changes default on.
11Sep08
kes Set the default FD timeout to 3 minutes (previously 30).
kes Apply Bastian Friedrich's weird spelling correction patch.