dput.cf 3.0 KB

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