1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
/*
$Id: sample.conf,v 1.3 1999/07/16 05:32:01 rob Exp $
Sample Pyrite Configuration File
Copy this to ~/.palm.conf and edit appropriately.
The system administrator may place a similar file in /etc/palm.conf,
and it will provide default values.
*/
defaults {
// The default port to use.
default-port "/dev/pilot";
// A list of available ports (separated by commas).
port "/dev/pilot";
// Where to put stored data (backups, etc.)
data-directory "~/Palm";
// Default username, to be used when no palmtop is connected.
// (Put your palmtop's user name here.)
user "John Q. Public";
}
Pyrite {
// Other packages to search for plug-ins
// (commented out because it won't work if you don't have the listed
// packages)
//
// plugin-packages { DocToolkit; SomeOtherPackage; }
Sync {
// List of conduits, in order. TimeSync should always be last,
// in case other conduits (eg. Backup) check timestamps.
Conduits { Backup; Install; TimeSync; }
}
Conduit "Backup" {
ignore_backup_bit 1; // If false, only back up files with backup bit set.
incremental 1; // If false, back up everything every time.
debug 0; // If true, produce lots of debugging output.
delete_old 1; // If true, delete old databases from the backup.
archive 1; // If true, archive deleted databases.
exclude { // List of databases to exclude from backup
"Some Database Name";
"Some Other Database Name";
}
exclude-regexps { // Regexps matching names to exclude from backup.
"(?i)^$";
}
}
}
|