{5} Assigned, Active Tickets by Owner (Full Description) (4 matches)
chris (4 matches)
| Ticket | Summary | Component | Milestone | Type | Created | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #63 | Support hard links in directories | bbackupd | defect | 11/01/2010 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Ben Bennett reported the following warning message: Jun 21 22:23:42 ayup bbackupd[24222]: WARNING: Found conflicting parent ID for file ID 1579976 (/home/fiji/public_html/pictures/49/014 - Nursery.jpg): expected 34689 but found 69964 (same directory used in two different locations?) The warning is correct, the file is in two locations... # ls -li '/home/fiji/public_html/pictures/49/013 - Nursery.jpg' '/home/fiji/public_html/family/3/013 - Nursery.jpg' 1579975 -rw-r--r-- 2 fiji fiji 131622 2002-12-18 07:37 /home/fiji/public_html/family/3/013 - Nursery.jpg 1579975 -rw-r--r-- 2 fiji fiji 131622 2002-12-18 07:37 /home/fiji/public_html/pictures/49/013 - Nursery.jpg Chris Wilson said:
Stefan Müller Wildi said:
This bug can cause data corruption in your backups! Do not ignore it! The warning is a warning for a reason! |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #67 | Add mutexes for Win32 (client) to enable detection of running instance during install/uninstall | bbackupd | enhancement | 25/03/2010 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Creating mutexes for the Win32 client apps (bbackupctl.exe, bbackupd.exe, bbackupquery.exe) enable the detection of running instance during install/uninstall/upgrade. The fixes are trivial and platform-specific, sorry for that: /usr/src/boxbackup-0.11rc7/bin/bbackupd/BackupDaemon.cpp BackupDaemon::BackupDaemon()
{
// Only ever one instance of a daemon
SSLLib::Initialise();
#ifdef WIN32
CreateMutex(0,FALSE,"__boxbackup_mutex__");
#endif
}
/usr/src/boxbackup-0.11rc7/bin/bbackupctl/bbackupctl.cpp int main(int argc, const char *argv[])
{
int returnCode = 0;
#ifdef WIN32
CreateMutex(0,FALSE,"__boxbackup_mutex__");
#endif
/usr/src/boxbackup-0.11rc7/bin/bbackupquery/bbackupquery.cpp int main(int argc, const char *argv[])
{
int returnCode = 0;
#ifdef WIN32
CreateMutex(0,FALSE,"__boxbackup_mutex__");
#endif
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #17 | List files using wildcards | bbackupquery | 0.12 | task | 04/01/2007 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Paul MacKenzie? <nospam@…> reports: For individual files within a full directory, I find it difficult (and some times impossible) to find the object id in a folder where there are 1000s of files to get the right one / older version. Any suggestions on how I can do a list like:
And it shows all the files starting with the word "file". |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| #20 | bbackupctl reload reports prior settings | bbackupctl | defect | 12/04/2007 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
Change bbackupd.conf timing settings. Run bbackupctl reload. The "Daemon configuration summary" incorrectly reports the settings from before the changes. Running it again reports the correct settings. Used notepad to make changes to bbackupd.conf to return timers from short test settings to longer default settings. Then ran bbackupctl reload to set them: C:\Program Files\Box Backup>bbackupctl.exe reload Using configuration file C:\Program Files\Box Backup\bbackupd.conf Daemon configuration summary: AutomaticBackup = true UpdateStoreInterval = 3 seconds MinimumFileAge = 4 seconds MaxUploadWait = 24 seconds Succeeded. The times reported were the old times. Running bbackupctl reload again now gives the new times: C:\Program Files\Box Backup>bbackupctl.exe reload Using configuration file C:\Program Files\Box Backup\bbackupd.conf Daemon configuration summary: AutomaticBackup = true UpdateStoreInterval = 3600 seconds MinimumFileAge = 21600 seconds MaxUploadWait = 86400 seconds Succeeded. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
