diff options
author | Holger Levsen <holger@layer-acht.org> | 2015-08-07 16:26:33 +0200 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2015-08-07 16:26:33 +0200 |
commit | d9a935133fd959278916d3ffaaf775d835b76821 (patch) | |
tree | e02897b71a85b777ade60e09507b8b41783ade61 | |
parent | 74a55c6432aa140b94af4ad3e4256ee22d5981cd (diff) | |
download | jenkins.debian.net-d9a935133fd959278916d3ffaaf775d835b76821.tar.xz |
reproducible: fix typo and avoid gendering maintainers
-rw-r--r-- | README | 4 | ||||
-rwxr-xr-x | bin/reproducible_setup_notify.py | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -171,7 +171,7 @@ Installation tests inside chroot environments. jenkins@jenkins:~$ /srv/jenkins/bin/reproducible_blacklist.sh $suite $package1 ---- -* We support sending automatic link:https://reproducible.debian.net/index_notify.html[email notification] for status changes to maintainers. Enabling/disabling suchnotifications can be done by people with shell access to jenkins: +* We support sending automatic link:https://reproducible.debian.net/index_notify.html[email notification] for status changes to maintainers. Enabling/disabling these notifications can be done by people with shell access to jenkins: ---- jenkins@jenkins:~$ /srv/jenkins/bin/reproducible_setup_notify.py -h @@ -182,7 +182,7 @@ usage: reproducible_setup_notify.py [-h] [-o] [-p PACKAGES [PACKAGES ...]] -p PACKAGES [PACKAGES ...], --packages PACKAGES [PACKAGES ...] list of packages for which activate notifications -m MAINTAINER, --maintainer MAINTAINER - email of a maintainer interested in his packages + email address of a maintainer ---- * Job configuration is at the usual location for 'jenkins.debian.net' - there's a 'job-cfg/reproducible.yaml' defining all the jobs and lots of scripts in 'bin/reproducible_*.(sh|py)', plus a few config files like for 'sudo' or 'apache2'. diff --git a/bin/reproducible_setup_notify.py b/bin/reproducible_setup_notify.py index 0c853058..0648744f 100755 --- a/bin/reproducible_setup_notify.py +++ b/bin/reproducible_setup_notify.py @@ -21,7 +21,7 @@ parser.add_argument('-o', '--deactivate', action='store_true', parser.add_argument('-p', '--packages', default='', nargs='+', help='list of packages for which activate notifications') parser.add_argument('-m', '--maintainer', default='', - help='email of a maintainer interested in his packages') + help='email address of a maintainer') local_args = parser.parse_known_args()[0] # these are here as an hack to be able to parse the command line |