diff options
author | Holger Levsen <holger@layer-acht.org> | 2016-11-21 00:19:29 +0100 |
---|---|---|
committer | Holger Levsen <holger@layer-acht.org> | 2016-11-21 00:19:29 +0100 |
commit | c9618492190a70e051154b5db21dcd681ef05bfb (patch) | |
tree | 5928a4a866f39bc02798f5f66a122a87031f23b3 | |
parent | 897a036e88d10359a88a97d68848bd1e498004df (diff) | |
download | jenkins.debian.net-c9618492190a70e051154b5db21dcd681ef05bfb.tar.xz |
sort entries alphabetically
Signed-off-by: Holger Levsen <holger@layer-acht.org>
-rwxr-xr-x | deploy_kgb.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/deploy_kgb.py b/deploy_kgb.py index 12dd4d2e..32b50c95 100755 --- a/deploy_kgb.py +++ b/deploy_kgb.py @@ -19,6 +19,7 @@ with open(secrets) as fd: passwords = yaml.load(fd) channels = [ + {'name': 'debconf-video', 'id': 'jenkins-debconf-video'}, {'name': 'debian-boot', 'id': 'jenkins-debian-boot'}, {'name': 'debian-bootstrap', 'id': 'jenkins-debian-bootstrap'}, {'name': 'debian-cinnamon', 'id': 'jenkins-debian-cinnamon'}, @@ -27,9 +28,8 @@ channels = [ {'name': 'debian-qa', 'id': 'jenkins-debian-qa'}, {'name': 'debian-reproducible', 'id': 'jenkins-debian-reproducible'}, {'name': 'debian-reproducible-changes', 'id': 'debian-reproducible-changes'}, - {'name': 'reproducible-builds', 'id': 'reproducible-builds'}, {'name': 'debian-ruby', 'id': 'pkg-ruby-extras'}, - {'name': 'debconf-video', 'id': 'jenkins-debconf-video'}, + {'name': 'reproducible-builds', 'id': 'reproducible-builds'}, ] template = """repo-id: '{repo_id}' |