diff options
| author | 2018-03-18 05:56:04 +0100 | |
|---|---|---|
| committer | 2018-04-04 04:50:04 +0200 | |
| commit | 946753d96692846ffe47487abf450251cad23538 (patch) | |
| tree | 4cf5d3a8374d1cb5dba508134a20491ff62e6d1a /doc | |
| parent | 1cd7d0f0248e2fe317b2e3da9f597059cf30b4d9 (diff) | |
Update documentation on recent changes.
Diffstat (limited to 'doc')
| -rw-r--r-- | doc/mini-dinstall.1 | 17 | ||||
| -rw-r--r-- | doc/mini-dinstall.conf | 28 |
2 files changed, 22 insertions, 23 deletions
diff --git a/doc/mini-dinstall.1 b/doc/mini-dinstall.1 index a358ca4..65aae30 100644 --- a/doc/mini-dinstall.1 +++ b/doc/mini-dinstall.1 @@ -1,7 +1,7 @@ .\" $Id: mini-dinstall.1 59 2004-01-28 20:28:50Z bob $ .\" -.\" Copyright (C) 2002 Colin Walters <walters@debian.org> -.\" Copyright (C) 2003 Graham Wilson <graham@debian.org> +.\" Copyright (c) 2002 Colin Walters <walters@debian.org> +.\" Copyright (c) 2003 Graham Wilson <graham@debian.org> .\" .\" This program is free software; you can redistribute it and/or modify .\" it under the terms of the GNU General Public License as published by @@ -106,9 +106,8 @@ name = value .RE .PP combinations, which set a configuration parameter for that distribution (or the -default one). Lists should be separated by commas, strings need only be -enclosed with quotes if they contain spaces or commas, and boolean values -should be 1 for true, and 0 for false. +default one). Lists should be separated by commas, and strings need only be +enclosed with quotes if they contain spaces or commas. .PP The configuration parameters available in the \fBDEFAULT\fR section are as follows: @@ -123,8 +122,8 @@ Additional GnuPG keyrings to use for signature verification. .B incoming_permissions The permissions for the \fIincoming\fR directory. \fBmini\-dinstall\fR will attempt to set the directory's permissions at startup. A value of zero (\''0\'' -or \''0000\'') will disable permission setting. Doing this, you MUST set -permission for incoming by hand! Defaults to 0750. +or \''0o000\'') will disable permission setting. Doing this, you MUST set +permission for incoming by hand! Defaults to 0o750. .TP .B keyrings GnuPG keyrings to use for signature verification of changes files. Setting this @@ -303,14 +302,14 @@ The Suite field in the Release file. Defaults to \*(lqNone\*(rq. If enabled, automatically install package upgrades from this repository only if the installed version of the package is higher than the version of the package in other sources. -Defaults to \*(lq0\*(rq. +Defaults to false. .TP .B experimental_release If enabled, packages will not automatically install or upgrade to newer versions from this repository .PP If this option is set, it overrides the option \fBbackport_release\fR. -Defaults to \*(lq0\*(rq. +Defaults to false. .TP .B release_signscript If specified, this script will be called to sign Release files. It will be diff --git a/doc/mini-dinstall.conf b/doc/mini-dinstall.conf index 6c1e022..1dabe52 100644 --- a/doc/mini-dinstall.conf +++ b/doc/mini-dinstall.conf @@ -24,10 +24,10 @@ mail_log_flush_count = 10 # disable this option, you should almost certainly have # dynamic_reindex enabled. You may want to disable this if you # install a *lot* of packages. -trigger_reindex = 1 +trigger_reindex = yes # Whether or not to verify GPG signatures on .changes files -verify_sigs = 1 +verify_sigs = yes # GNUPG keyrings to use for signature verification, separated by # commas. This will override the builtin keyrings. Generally you @@ -40,9 +40,9 @@ extra_keyrings = ~/.gnupg/pubring.gpg, ~/.gnupg/other.gpg # The permissions for the incoming directory. If you want to use # mini-dinstall for a group of people, you might want to make this # more permissive. -# A value of zero ('0' or '0000') will disable the permission setting on every +# A value of zero ('0' or '0o000') will disable the permission setting on every # mini-dinstall run. Doing this, you MUST set permission for incoming by hand. -incoming_permissions = 0750 +incoming_permissions = 0o750 ### The remaining options can also be specified in a per-distribution ### basis @@ -59,10 +59,10 @@ architectures = all, i386, sparc, powerpc archive_style = flat # Whether or not to mail you about successful installations -mail_on_success = 1 +mail_on_success = yes # Whether or not to delete old packages -keep_old = 0 +keep_old = no # A script to run before a .changes is installed. It is called with # the full path to the .changes as an argument. If it exits with an @@ -74,7 +74,7 @@ pre_install_script = ~/bin/pre-inst.sh post_install_script = ~/bin/post-inst.sh # Whether or not to generate Release files -generate_release = 1 +generate_release = yes # The default Origin: field in the release file release_origin = username @@ -89,7 +89,7 @@ release_suite = Penthouse release_description = My Happy Fun Packages # Whether or not to mark the release as experimental. -experimental_release = 0 +experimental_release = no # If specified, this script will be called to sign Release files. It # will be invoked in the directory containing the Release file, and @@ -100,18 +100,18 @@ release_signscript = ~/bin/sign-release.sh # Whether or not to watch directories for changes, and reindex # Packages/Sources as needed. Only used in daemon mode. -dynamic_reindex = 1 +dynamic_reindex = yes # Whether or not to make .changes files unreadable to others by # default. This will protect you from other people unexpectedly # uploading your packages. Please think carefully about your security # before you change this! -chown_changes_files = 1 +chown_changes_files = yes # Whether or not to use /usr/bin/dnotify. This doesn't work on some # systems, so you might want to disable it. Only used if # dynamic_reindex is enabled. -use_dnotify = 0 +use_dnotify = no # If you use the mtime-polling directory notifier, this is the number # of seconds in between polls. Only used if dynamic_reindex is @@ -130,12 +130,12 @@ poll_time = 40 [woody] max_retry_time = 30 -keep_old = 1 +keep_old = yes [staging] post_install_script = ~/bin/staging-post-inst.sh [experimental] architectures = all, i386, sparc, powerpc, ia64, sh4 -keep_old = 1 -experimental_release = 1 +keep_old = yes +experimental_release = yes |
