diff options
author | P. J. McDermott <pjm@nac.net> | 2013-10-11 17:28:41 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-10-11 17:28:41 (EDT) |
commit | bc8c9b9e2b8553355a785f486367dcd3fdda5e4c (patch) | |
tree | d1e124851f2630ff86c7dc46b59d9b8e597903a0 | |
parent | 4409feb02b5d44600d270cd0e2ddd749ea9663cb (diff) |
examples/conf.default: New file.
-rw-r--r-- | Makefile.in | 1 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | examples/conf.default | 17 |
3 files changed, 19 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in index 97883d9..fad6921 100644 --- a/Makefile.in +++ b/Makefile.in @@ -61,6 +61,7 @@ distfiles = \ INSTALL \ HACKING \ NEWS \ + examples/conf.default \ src/local.mk \ lib/local.mk \ lib/cmd/local.mk \ @@ -7,6 +7,7 @@ Changes in this release: * The process-incoming command now removes processed files. * All output is now sent to stderr. (Previously, only some of it was.) + * An example archive "conf" file is now provided in the source tree. ProteanOS Archive Manager version 1.0.0 --------------------------------------- diff --git a/examples/conf.default b/examples/conf.default new file mode 100644 index 0000000..95f7814 --- /dev/null +++ b/examples/conf.default @@ -0,0 +1,17 @@ +# Archive configuration +# +# Put this in your archive base directory as a file named "conf" and modify it +# to your needs. + +# The channel into which changes are included. +# Default: 'dev' +conf_incoming_channel='dev' + +# The directory to scan for incoming changes, relative to the archive base +# directory. +# Default: '../incoming' +conf_incoming_dir='../incoming' + +# The delay after which unreferenced pool files should be removed. +# Default: 86400 (1 day) +conf_pool_gc_delay=86400 |