~ubuntu-branches/ubuntu/saucy/augeas/saucy-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
module Test_dput =

   let conf = "# Example dput.cf that defines the host that can be used
# with dput for uploading.

[DEFAULT]
login = username
method = ftp
hash = md5
allow_unsigned_uploads = 0
run_lintian = 0
run_dinstall = 0
check_version = 0
scp_compress = 0
post_upload_command =
pre_upload_command =
passive_ftp = 1
default_host_non-us =
default_host_main = hebex
allowed_distributions = (?!UNRELEASED)

[hebex]
fqdn = condor.infra.s1.p.fti.net
login = anonymous
method = ftp
incoming = /incoming/hebex
passive_ftp = 0

[dop/desktop]
fqdn = condor.infra.s1.p.fti.net
login = anonymous
method = ftp
incoming = /incoming/dop/desktop
passive_ftp = 0

[jp-non-us]
fqdn = hp.debian.or.jp
incoming = /pub/Incoming/upload-non-US
login = anonymous

# DISABLED due to being repaired currently
#[erlangen]
#fqdn = ftp.uni-erlangen.de
#incoming = /public/pub/Linux/debian/UploadQueue/
#login = anonymous

[ftp-master]
fqdn = ftp-master.debian.org
incoming = /pub/UploadQueue/
login = anonymous
post_upload_command = /usr/bin/mini-dinstall --batch
# And if you want to override one of the defaults, add it here.
# # For example, comment out the next line
# # login = another_username
# # post_upload_command = /path/to/some/script
# # pre_upload_command = /path/to/some/script

"

   test Dput.lns get conf =
      { "#comment" = "Example dput.cf that defines the host that can be used" }
      { "#comment" = "with dput for uploading." }
      {}
      { "target" = "DEFAULT"
         { "login"  = "username" }
         { "method" = "ftp" }
         { "hash"   = "md5" }
         { "allow_unsigned_uploads" = "0" }
         { "run_lintian" = "0" }
         { "run_dinstall" = "0" }
         { "check_version" = "0" }
         { "scp_compress" = "0" }
         { "post_upload_command" }
         { "pre_upload_command" }
         { "passive_ftp" = "1" }
         { "default_host_non-us" }
         { "default_host_main" = "hebex" }
         { "allowed_distributions" = "(?!UNRELEASED)" }
         {} }
      { "target" = "hebex"
         { "fqdn" = "condor.infra.s1.p.fti.net" }
	 { "login" = "anonymous" }
	 { "method" = "ftp" }
	 { "incoming" = "/incoming/hebex" }
	 { "passive_ftp" = "0" }
         {} }
      { "target" = "dop/desktop"
         { "fqdn" = "condor.infra.s1.p.fti.net" }
	 { "login" = "anonymous" }
	 { "method" = "ftp" }
	 { "incoming" = "/incoming/dop/desktop" }
	 { "passive_ftp" = "0" }
         {} }
      { "target" = "jp-non-us"
         { "fqdn" = "hp.debian.or.jp" }
	 { "incoming" = "/pub/Incoming/upload-non-US" }
	 { "login" = "anonymous" }
         {}
         { "#comment" = "DISABLED due to being repaired currently" }
         { "#comment" = "[erlangen]" }
         { "#comment" = "fqdn = ftp.uni-erlangen.de" }
         { "#comment" = "incoming = /public/pub/Linux/debian/UploadQueue/" }
         { "#comment" = "login = anonymous" }
         {} }
      { "target" = "ftp-master"
         { "fqdn" = "ftp-master.debian.org" }
	 { "incoming" = "/pub/UploadQueue/" }
	 { "login" = "anonymous" }
	 { "post_upload_command" = "/usr/bin/mini-dinstall --batch" }
         { "#comment" = "And if you want to override one of the defaults, add it here." }
         { "#comment" = "# For example, comment out the next line" }
         { "#comment" = "# login = another_username" }
         { "#comment" = "# post_upload_command = /path/to/some/script" }
         { "#comment" = "# pre_upload_command = /path/to/some/script" }
	 {} }