Signature files are not input to the command; remove the attempt to match.
[dput.git] / dput.cf
blobc84a52ebbaa57032e97ad53925f4814d9fb80025
1 # Example dput.cf that defines the host that can be used
2 # with dput for uploading.
4 [DEFAULT]
5 login                   = *
6 method                  = ftp
7 hash                    = md5
8 allow_unsigned_uploads  = 0
9 allow_dcut              = 0
10 run_lintian             = 0
11 run_dinstall            = 0
12 check_version           = 0
13 scp_compress            = 0
14 post_upload_command     =
15 pre_upload_command      =
16 passive_ftp             = 1
17 default_host_main       =
18 allowed_distributions   = (?!UNRELEASED)
20 [ftp-master]
21 fqdn                    = ftp.upload.debian.org
22 incoming                = /pub/UploadQueue/
23 login                   = anonymous
24 allow_dcut              = 1
25 method                  = ftp
26 # Please, upload your package to the proper archive
27 # http://www.debian.org/doc/manuals/developers-reference/pkgs.html#bug-security-upload
28 allowed_distributions   = (?!UNRELEASED|.*-security)
30 # http://lists.debian.org/debian-project/2009/05/msg00036.html
31 [ftp-eu]
32 fqdn                    = ftp.eu.upload.debian.org
33 method                  = ftp
34 incoming                = /pub/UploadQueue/
35 login                   = anonymous
36 allow_dcut              = 1
37 # Please, upload your package to the proper archive
38 # http://www.debian.org/doc/manuals/developers-reference/pkgs.html#bug-security-upload
39 allowed_distributions   = (?!UNRELEASED|.*-security)
41 # http://lists.debian.org/debian-devel-announce/2008/09/msg00007.html
42 [ssh-upload]
43 login                   = *
44 # login                 = another_username
45 fqdn                    = ssh.upload.debian.org
46 method                  = scp
47 incoming                = /srv/upload.debian.org/UploadQueue/
48 allow_dcut              = 1
49 # Please, upload your package to the proper archive
50 # http://www.debian.org/doc/manuals/developers-reference/pkgs.html#bug-security-upload
51 allowed_distributions   = (?!UNRELEASED|.*-security)
53 # And if you want to override one of the defaults, add it here.
54 # For example, comment out the next line
55 # post_upload_command   = /path/to/some/script
56 # pre_upload_command    = /path/to/some/script
58 [security-master]
59 fqdn                    = security-master.debian.org
60 method                  = ftp
61 incoming                = /pub/SecurityUploadQueue
62 login                   = anonymous
63 allow_dcut              = 1
64 # This has been added at the request of the security team.
65 # Please be sure to know what you are doing before taking it out.
66 pre_upload_command      = /usr/share/dput/helper/security-warning
68 [security-master-unembargoed]
69 fqdn                    = security-master.debian.org
70 method                  = ftp
71 incoming                = /pub/OpenSecurityUploadQueue
72 login                   = anonymous
73 allow_dcut              = 1
74 # This has been added at the request of the security team.
75 # Please be sure to know what you are doing before taking it out.
76 pre_upload_command      = /usr/share/dput/helper/security-warning
78 [ubuntu]
79 fqdn                    = upload.ubuntu.com
80 method                  = ftp
81 incoming                = /
82 login                   = anonymous
84 [ppa]
85 fqdn                    = ppa.launchpad.net
86 method                  = ftp
87 # replace <launchpad-id> with your Launchpad ID
88 incoming                = ~<launchpad-id>/ubuntu
89 login                   = anonymous
91 [mentors]
92 method                  = ftp
93 fqdn                    = mentors.debian.net
94 incoming                = .
95 login                   = anonymous
97 [local]
98 method                  = local
99 incoming                = ~/public_html/debian/mini-dinstall/incoming
100 run_dinstall            = 0
101 post_upload_command     = /usr/bin/mini-dinstall --batch
104 # Local variables:
105 # coding: utf-8
106 # mode: conf
107 # End:
108 # vim: fileencoding=utf-8 filetype=config :