activesambaldap 0.0.7 → 0.0.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (101) hide show
  1. data/NEWS.en +10 -1
  2. data/NEWS.ja +10 -1
  3. data/README.en +10 -3
  4. data/README.ja +10 -3
  5. data/Rakefile +3 -4
  6. data/data/locale/ja/LC_MESSAGES/active-samba-ldap.mo +0 -0
  7. data/example/asl-admin/README +243 -0
  8. data/example/asl-admin/Rakefile +10 -0
  9. data/example/asl-admin/app/controllers/application_controller.rb +10 -0
  10. data/example/asl-admin/app/controllers/samba_controller.rb +12 -0
  11. data/example/asl-admin/app/helpers/application_helper.rb +3 -0
  12. data/example/asl-admin/app/helpers/samba_helper.rb +2 -0
  13. data/example/asl-admin/app/models/computer.rb +3 -0
  14. data/example/asl-admin/app/models/dc.rb +3 -0
  15. data/example/asl-admin/app/models/group.rb +3 -0
  16. data/example/asl-admin/app/models/idmap.rb +3 -0
  17. data/example/asl-admin/app/models/ou.rb +3 -0
  18. data/example/asl-admin/app/models/unix_id_pool.rb +3 -0
  19. data/example/asl-admin/app/models/user.rb +3 -0
  20. data/example/asl-admin/app/views/samba/index.html.erb +17 -0
  21. data/example/asl-admin/app/views/samba/populate.html.erb +15 -0
  22. data/example/asl-admin/app/views/samba/purge.html.erb +10 -0
  23. data/example/asl-admin/config/boot.rb +110 -0
  24. data/example/asl-admin/config/database.yml +22 -0
  25. data/example/asl-admin/config/environment.rb +48 -0
  26. data/example/asl-admin/config/environments/development.rb +17 -0
  27. data/example/asl-admin/config/environments/production.rb +28 -0
  28. data/example/asl-admin/config/environments/test.rb +28 -0
  29. data/example/asl-admin/config/initializers/backtrace_silencers.rb +7 -0
  30. data/example/asl-admin/config/initializers/inflections.rb +10 -0
  31. data/example/asl-admin/config/initializers/mime_types.rb +5 -0
  32. data/example/asl-admin/config/initializers/new_rails_defaults.rb +19 -0
  33. data/example/asl-admin/config/initializers/session_store.rb +15 -0
  34. data/example/asl-admin/config/ldap.yml.sample +24 -0
  35. data/example/asl-admin/config/locales/en.yml +5 -0
  36. data/example/asl-admin/config/routes.rb +43 -0
  37. data/example/asl-admin/log/test.log +5 -0
  38. data/example/asl-admin/public/404.html +30 -0
  39. data/example/asl-admin/public/422.html +30 -0
  40. data/example/asl-admin/public/500.html +30 -0
  41. data/example/asl-admin/public/favicon.ico +0 -0
  42. data/example/asl-admin/public/images/rails.png +0 -0
  43. data/example/asl-admin/public/index.html +275 -0
  44. data/example/asl-admin/public/javascripts/application.js +2 -0
  45. data/example/asl-admin/public/javascripts/controls.js +963 -0
  46. data/example/asl-admin/public/javascripts/dragdrop.js +973 -0
  47. data/example/asl-admin/public/javascripts/effects.js +1128 -0
  48. data/example/asl-admin/public/javascripts/prototype.js +4320 -0
  49. data/example/asl-admin/public/robots.txt +5 -0
  50. data/example/asl-admin/script/about +4 -0
  51. data/example/asl-admin/script/console +3 -0
  52. data/example/asl-admin/script/dbconsole +3 -0
  53. data/example/asl-admin/script/destroy +3 -0
  54. data/example/asl-admin/script/generate +3 -0
  55. data/example/asl-admin/script/performance/benchmarker +3 -0
  56. data/example/asl-admin/script/performance/profiler +3 -0
  57. data/example/asl-admin/script/plugin +3 -0
  58. data/example/asl-admin/script/runner +3 -0
  59. data/example/asl-admin/script/server +3 -0
  60. data/example/asl-admin/test/performance/browsing_test.rb +9 -0
  61. data/example/asl-admin/test/test_helper.rb +38 -0
  62. data/lib/active_samba_ldap.rb +1 -1
  63. data/lib/active_samba_ldap/account_entry.rb +17 -9
  64. data/lib/active_samba_ldap/active_directory.rb +66 -0
  65. data/lib/active_samba_ldap/base.rb +8 -0
  66. data/lib/active_samba_ldap/computer.rb +1 -0
  67. data/lib/active_samba_ldap/configuration.rb +32 -4
  68. data/lib/active_samba_ldap/entry.rb +48 -0
  69. data/lib/active_samba_ldap/group_entry.rb +8 -8
  70. data/lib/active_samba_ldap/populate.rb +1 -0
  71. data/lib/active_samba_ldap/samba_account_entry.rb +31 -14
  72. data/lib/active_samba_ldap/samba_computer_account_entry.rb +18 -0
  73. data/lib/active_samba_ldap/samba_entry.rb +6 -5
  74. data/lib/active_samba_ldap/samba_group_entry.rb +22 -13
  75. data/lib/active_samba_ldap/version.rb +1 -1
  76. data/po/active-samba-ldap.pot +463 -0
  77. data/po/ja/active-samba-ldap.po +15 -11
  78. data/rails/init.rb +1 -18
  79. data/rails_generators/scaffold_active_samba_ldap/scaffold_active_samba_ldap_generator.rb +4 -3
  80. data/rails_generators/scaffold_active_samba_ldap/templates/computer.rb +1 -1
  81. data/rails_generators/scaffold_active_samba_ldap/templates/group.rb +1 -1
  82. data/rails_generators/scaffold_active_samba_ldap/templates/{samba_index.rhtml → samba_index.html.erb} +0 -0
  83. data/rails_generators/scaffold_active_samba_ldap/templates/{samba_populate.rhtml → samba_populate.html.erb} +0 -0
  84. data/rails_generators/scaffold_active_samba_ldap/templates/{samba_purge.rhtml → samba_purge.html.erb} +0 -0
  85. data/rails_generators/scaffold_active_samba_ldap/templates/user.rb +1 -1
  86. data/test-unit/History.txt +1 -1
  87. data/test-unit/README.txt +1 -1
  88. data/test-unit/lib/test/unit/assertions.rb +1 -1
  89. data/test-unit/lib/test/unit/autorunner.rb +19 -4
  90. data/test-unit/lib/test/unit/collector/load.rb +3 -1
  91. data/test-unit/lib/test/unit/color-scheme.rb +5 -1
  92. data/test-unit/lib/test/unit/error.rb +7 -5
  93. data/test-unit/lib/test/unit/runner/tap.rb +8 -0
  94. data/test-unit/lib/test/unit/ui/console/testrunner.rb +63 -8
  95. data/test-unit/lib/test/unit/ui/tap/testrunner.rb +92 -0
  96. data/test-unit/test/collector/test-load.rb +1 -5
  97. data/test-unit/test/test-color-scheme.rb +4 -0
  98. data/test/command.rb +8 -3
  99. data/test/run-test.rb +4 -1
  100. data/test/test_asl_useradd.rb +2 -2
  101. metadata +81 -20
@@ -0,0 +1,18 @@
1
+ module ActiveSambaLdap
2
+ module SambaComputerAccountEntry
3
+ def self.included(base)
4
+ super
5
+ base.extend(ClassMethods)
6
+ end
7
+
8
+ module ClassMethods
9
+ def samba_object_classes
10
+ if samba4?
11
+ super + ["computer"]
12
+ else
13
+ super
14
+ end
15
+ end
16
+ end
17
+ end
18
+ end
@@ -1,23 +1,24 @@
1
1
  module ActiveSambaLdap
2
2
  module SambaEntry
3
3
  def samba_available?
4
- classes.include?(samba_object_class)
4
+ (samba_object_classes - classes).empty?
5
5
  end
6
6
 
7
7
  def remove_samba_availability
8
- remove_class(samba_object_class)
8
+ remove_class(*samba_object_classes)
9
9
  end
10
10
 
11
11
  def ensure_samba_available
12
- add_class(samba_object_class)
12
+ add_class(*samba_object_classes)
13
13
  end
14
14
 
15
- def samba_object_class
16
- self.class.samba_object_class
15
+ def samba_object_classes
16
+ self.class.samba_object_classes
17
17
  end
18
18
 
19
19
  private
20
20
  def assert_samba_available
21
+ return if samba4?
21
22
  unless samba_available?
22
23
  raise NotSambaAavialableError.new(self)
23
24
  end
@@ -58,8 +58,12 @@ module ActiveSambaLdap
58
58
  }
59
59
 
60
60
  module ClassMethods
61
- def samba_object_class
62
- "sambaGroupMapping"
61
+ def samba_object_classes
62
+ if samba4?
63
+ ["group"]
64
+ else
65
+ ["sambaGroupMapping"]
66
+ end
63
67
  end
64
68
 
65
69
  def gid2rid(gid)
@@ -83,11 +87,6 @@ module ActiveSambaLdap
83
87
  def start_rid
84
88
  gid2rid(start_gid)
85
89
  end
86
-
87
- private
88
- def default_recommended_classes
89
- super + [samba_object_class]
90
- end
91
90
  end
92
91
 
93
92
  def fill_default_values(options={})
@@ -130,14 +129,24 @@ module ActiveSambaLdap
130
129
  def change_type(type)
131
130
  assert_samba_available
132
131
  normalized_type = type.to_s.downcase
133
- if TYPES.has_key?(normalized_type)
134
- type = TYPES[normalized_type]
135
- elsif TYPES.values.include?(type.to_i)
136
- # pass
132
+ if samba4?
133
+ self.group_type = ActiveDirectory::GroupType.resolve(normalized_type)
137
134
  else
138
- raise ArgumentError, _("invalid type: %s") % type
135
+ if TYPES.has_key?(normalized_type)
136
+ type = TYPES[normalized_type]
137
+ elsif TYPES.values.include?(type.to_i)
138
+ # pass
139
+ else
140
+ # TODO: add available values
141
+ raise ArgumentError, _("invalid type: %s") % type
142
+ end
143
+ self.samba_group_type = type.to_s
139
144
  end
140
- self.samba_group_type = type.to_s
145
+ end
146
+
147
+ def set_object_category
148
+ _base = ActiveSambaLdap::Base.base
149
+ self.object_category = "cn=Group,cn=Schema,cn=Configuration,#{_base}"
141
150
  end
142
151
  end
143
152
  end
@@ -1,3 +1,3 @@
1
1
  module ActiveSambaLdap
2
- VERSION = "0.0.7"
2
+ VERSION = "0.0.8"
3
3
  end
@@ -0,0 +1,463 @@
1
+ # SOME DESCRIPTIVE TITLE.
2
+ # Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER
3
+ # This file is distributed under the same license as the PACKAGE package.
4
+ # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5
+ #
6
+ #, fuzzy
7
+ msgid ""
8
+ msgstr ""
9
+ "Project-Id-Version: ActiveSambaLdap 0.0.8\n"
10
+ "POT-Creation-Date: 2009-09-22 14:42+0900\n"
11
+ "PO-Revision-Date: 2007-09-08 11:51+0900\n"
12
+ "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
+ "Language-Team: LANGUAGE <LL@li.org>\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
18
+
19
+ #: lib/active_samba_ldap/command.rb:19
20
+ msgid "Common options:"
21
+ msgstr ""
22
+
23
+ #: lib/active_samba_ldap/command.rb:22
24
+ msgid "Specify configuration file"
25
+ msgstr ""
26
+
27
+ #: lib/active_samba_ldap/command.rb:23
28
+ msgid "Default configuration files:"
29
+ msgstr ""
30
+
31
+ #: lib/active_samba_ldap/command.rb:28
32
+ msgid "Show this message"
33
+ msgstr ""
34
+
35
+ #: lib/active_samba_ldap/command.rb:33
36
+ msgid "Show version"
37
+ msgstr ""
38
+
39
+ #: lib/active_samba_ldap/entry.rb:59
40
+ msgid "%s must be only ou"
41
+ msgstr ""
42
+
43
+ #: lib/active_samba_ldap/base.rb:15
44
+ msgid "required variable is not set: %s"
45
+ msgid_plural "required variables are not set: %s"
46
+ msgstr[0] ""
47
+ msgstr[1] ""
48
+
49
+ #: lib/active_samba_ldap/base.rb:27
50
+ msgid "uid number already exists: %s"
51
+ msgstr ""
52
+
53
+ #: lib/active_samba_ldap/base.rb:35 bin/asl-groupdel:46 bin/asl-groupshow:27
54
+ #: bin/asl-samba-groupmod:48 bin/asl-groupmod:59 bin/asl-samba-groupdel:40
55
+ msgid "group doesn't exist: %s"
56
+ msgstr ""
57
+
58
+ #: lib/active_samba_ldap/base.rb:43
59
+ msgid "gid number already exists: %s"
60
+ msgstr ""
61
+
62
+ #: lib/active_samba_ldap/base.rb:51
63
+ msgid "gid number doesn't exist: %s"
64
+ msgstr ""
65
+
66
+ #: lib/active_samba_ldap/base.rb:59
67
+ msgid "sambaSID attribute doesn't exist for gid number '%s'"
68
+ msgstr ""
69
+
70
+ #: lib/active_samba_ldap/base.rb:68
71
+ msgid ""
72
+ "cannot change primary group from '%s' to other group due to no other "
73
+ "belonged groups: %s"
74
+ msgstr ""
75
+
76
+ #: lib/active_samba_ldap/base.rb:79
77
+ msgid ""
78
+ "cannot destroy group '%s' due to members who belong to the group as primary "
79
+ "group: %s"
80
+ msgstr ""
81
+
82
+ #: lib/active_samba_ldap/base.rb:91
83
+ msgid "found invalid configuration format at %s:%s: %s"
84
+ msgstr ""
85
+
86
+ #: lib/active_samba_ldap/base.rb:102
87
+ msgid "the value of %s '%s' is invalid: %s"
88
+ msgstr ""
89
+
90
+ #: lib/active_samba_ldap/base.rb:111
91
+ msgid "%s is not Samba available"
92
+ msgstr ""
93
+
94
+ #: lib/active_samba_ldap/base.rb:119
95
+ msgid "%s is not UNIX available"
96
+ msgstr ""
97
+
98
+ #: lib/active_samba_ldap/configuration.rb:338
99
+ msgid "must be in %s"
100
+ msgstr ""
101
+
102
+ #: lib/active_samba_ldap/samba_group_entry.rb:141
103
+ msgid "invalid type: %s"
104
+ msgstr ""
105
+
106
+ #: rails/init.rb:12
107
+ msgid ""
108
+ "You should run 'script/generator scaffold_active_samba_ldap' to make %s."
109
+ msgstr ""
110
+
111
+ #: bin/asl-samba-useradd:14 bin/asl-samba-computeradd:14 bin/asl-useradd:42
112
+ msgid "add the user in the organizational unit OU"
113
+ msgstr ""
114
+
115
+ #: bin/asl-samba-useradd:15 bin/asl-samba-computeradd:15 bin/asl-useradd:43
116
+ msgid "(relative to the user suffix)"
117
+ msgstr ""
118
+
119
+ #: bin/asl-samba-useradd:33 bin/asl-samba-userdel:21 bin/asl-userdel:42
120
+ #: bin/asl-groupdel:27 bin/asl-samba-computeradd:33 bin/asl-useradd:144
121
+ #: bin/asl-samba-groupmod:29 bin/asl-populate:60 bin/asl-groupmod:40
122
+ #: bin/asl-samba-groupadd:21 bin/asl-purge:16 bin/asl-samba-groupdel:21
123
+ #: bin/asl-groupadd:33
124
+ msgid "need root authority."
125
+ msgstr ""
126
+
127
+ #: bin/asl-samba-useradd:57
128
+ msgid "illegal user name: %s"
129
+ msgstr ""
130
+
131
+ #: bin/asl-samba-useradd:62
132
+ msgid "user already exists: %s"
133
+ msgstr ""
134
+
135
+ #: bin/asl-samba-useradd:75 bin/asl-samba-computeradd:78 bin/asl-useradd:224
136
+ msgid "UID already exists: %s"
137
+ msgstr ""
138
+
139
+ #: bin/asl-samba-userdel:40 bin/asl-passwd:52 bin/asl-usershow:27
140
+ msgid "user doesn't exist: %s"
141
+ msgstr ""
142
+
143
+ #: bin/asl-userdel:16 bin/asl-useradd:51 bin/asl-samba-usermod:15
144
+ #: bin/asl-usermod:44
145
+ msgid "is a Windows Workstation"
146
+ msgstr ""
147
+
148
+ #: bin/asl-userdel:17 bin/asl-useradd:52 bin/asl-samba-usermod:16
149
+ #: bin/asl-usermod:45
150
+ msgid "(otherwise, Windows user)"
151
+ msgstr ""
152
+
153
+ #: bin/asl-userdel:21
154
+ msgid "remove home directory"
155
+ msgstr ""
156
+
157
+ #: bin/asl-userdel:27
158
+ msgid "do interactively"
159
+ msgstr ""
160
+
161
+ #: bin/asl-userdel:62 bin/asl-useradd:169 bin/asl-samba-usermod:48
162
+ #: bin/asl-usermod:162
163
+ msgid "computer"
164
+ msgstr ""
165
+
166
+ #: bin/asl-userdel:65 bin/asl-useradd:173 bin/asl-samba-usermod:51
167
+ #: bin/asl-usermod:166
168
+ msgid "user"
169
+ msgstr ""
170
+
171
+ #: bin/asl-userdel:73 bin/asl-samba-usermod:59 bin/asl-usermod:170
172
+ msgid "%s doesn't exist: %s"
173
+ msgstr ""
174
+
175
+ #: bin/asl-groupdel:14
176
+ msgid "force delete group"
177
+ msgstr ""
178
+
179
+ #: bin/asl-samba-computeradd:57
180
+ msgid "illegal computer name: %s"
181
+ msgstr ""
182
+
183
+ #: bin/asl-samba-computeradd:62
184
+ msgid "computer already exists: %s"
185
+ msgstr ""
186
+
187
+ #: bin/asl-passwd:17
188
+ msgid "update samba password"
189
+ msgstr ""
190
+
191
+ #: bin/asl-passwd:23
192
+ msgid "update UNIX password"
193
+ msgstr ""
194
+
195
+ #: bin/asl-passwd:41
196
+ msgid "do nothing."
197
+ msgstr ""
198
+
199
+ #: bin/asl-passwd:58
200
+ msgid "Enter your current password: "
201
+ msgstr ""
202
+
203
+ #: bin/asl-passwd:63 bin/asl-samba-usermod:70 bin/asl-usermod:181
204
+ msgid "password doesn't match."
205
+ msgstr ""
206
+
207
+ #: bin/asl-passwd:68
208
+ msgid "New password: "
209
+ msgstr ""
210
+
211
+ #: bin/asl-passwd:69
212
+ msgid "Retype new password: "
213
+ msgstr ""
214
+
215
+ #: bin/asl-passwd:72
216
+ msgid "New passwords don't match."
217
+ msgstr ""
218
+
219
+ #: bin/asl-useradd:54 bin/asl-usermod:60
220
+ msgid "uid"
221
+ msgstr ""
222
+
223
+ #: bin/asl-useradd:55 bin/asl-samba-usermod:19
224
+ msgid "gid"
225
+ msgstr ""
226
+
227
+ #: bin/asl-useradd:57 bin/asl-usermod:68
228
+ msgid "supplementary groups (comma separated)"
229
+ msgstr ""
230
+
231
+ #: bin/asl-useradd:61
232
+ msgid "create a group for the user"
233
+ msgstr ""
234
+
235
+ #: bin/asl-useradd:64
236
+ msgid "set the GECOS field for the new user account"
237
+ msgstr ""
238
+
239
+ #: bin/asl-useradd:65 bin/asl-usermod:74
240
+ msgid "shell"
241
+ msgstr ""
242
+
243
+ #: bin/asl-useradd:66 bin/asl-usermod:75
244
+ msgid "given name"
245
+ msgstr ""
246
+
247
+ #: bin/asl-useradd:68 bin/asl-usermod:77
248
+ msgid "common name"
249
+ msgstr ""
250
+
251
+ #: bin/asl-useradd:69 bin/asl-usermod:78
252
+ msgid "surname"
253
+ msgstr ""
254
+
255
+ #: bin/asl-useradd:72 bin/asl-usermod:50
256
+ msgid "home directory"
257
+ msgstr ""
258
+
259
+ #: bin/asl-useradd:74
260
+ msgid "permission of home directory"
261
+ msgstr ""
262
+
263
+ #: bin/asl-useradd:76
264
+ msgid "setup home directory"
265
+ msgstr ""
266
+
267
+ #: bin/asl-useradd:79
268
+ msgid "skeleton directory"
269
+ msgstr ""
270
+
271
+ #: bin/asl-useradd:82
272
+ msgid "wait TIME seconds before exiting"
273
+ msgstr ""
274
+
275
+ #: bin/asl-useradd:86 bin/asl-usermod:81
276
+ msgid "For samba accounts:"
277
+ msgstr ""
278
+
279
+ #: bin/asl-useradd:88 bin/asl-usermod:83
280
+ msgid "expire date"
281
+ msgstr ""
282
+
283
+ #: bin/asl-useradd:92 bin/asl-usermod:87
284
+ msgid "can change password"
285
+ msgstr ""
286
+
287
+ #: bin/asl-useradd:96 bin/asl-usermod:91
288
+ msgid "must change password"
289
+ msgstr ""
290
+
291
+ #: bin/asl-useradd:100 bin/asl-usermod:95
292
+ msgid "sambaHomePath"
293
+ msgstr ""
294
+
295
+ #: bin/asl-useradd:101 bin/asl-usermod:96
296
+ msgid "(SMB home share, like '\\\\PDC\\user'"
297
+ msgstr ""
298
+
299
+ #: bin/asl-useradd:105 bin/asl-usermod:100
300
+ msgid "sambaHomeDrive"
301
+ msgstr ""
302
+
303
+ #: bin/asl-useradd:106 bin/asl-usermod:101
304
+ msgid "(letter associated with home share, like 'H:')"
305
+ msgstr ""
306
+
307
+ #: bin/asl-useradd:110 bin/asl-usermod:105
308
+ msgid "sambaLogonScript"
309
+ msgstr ""
310
+
311
+ #: bin/asl-useradd:111 bin/asl-usermod:106
312
+ msgid "(DOS script to execute on login)"
313
+ msgstr ""
314
+
315
+ #: bin/asl-useradd:115 bin/asl-usermod:110
316
+ msgid "sambaProfilePath"
317
+ msgstr ""
318
+
319
+ #: bin/asl-useradd:116 bin/asl-usermod:111
320
+ msgid "(profile directory, like '\\\\PDC\\profiles\\user')"
321
+ msgstr ""
322
+
323
+ #: bin/asl-useradd:120 bin/asl-usermod:116
324
+ msgid "sambaAcctFlags"
325
+ msgstr ""
326
+
327
+ #: bin/asl-useradd:121 bin/asl-usermod:117
328
+ msgid "(samba account control bits, like '[NDHTUMWSLXI]')"
329
+ msgstr ""
330
+
331
+ #: bin/asl-useradd:177
332
+ msgid "illegal %s name: %s"
333
+ msgstr ""
334
+
335
+ #: bin/asl-useradd:182 bin/asl-usermod:309
336
+ msgid "%s already exists: %s"
337
+ msgstr ""
338
+
339
+ #: bin/asl-samba-groupmod:15 bin/asl-groupmod:26
340
+ msgid "add members (comma delimited)"
341
+ msgstr ""
342
+
343
+ #: bin/asl-samba-groupmod:17 bin/asl-groupmod:28
344
+ msgid "delete members (comma delimited)"
345
+ msgstr ""
346
+
347
+ #: bin/asl-samba-groupmod:56
348
+ msgid "there are duplicated members in adding and deleting members: %s"
349
+ msgstr ""
350
+
351
+ #: bin/asl-samba-usermod:65 bin/asl-usermod:176
352
+ msgid "Enter your password: "
353
+ msgstr ""
354
+
355
+ #: bin/asl-populate:30
356
+ msgid "first uid number to allocate"
357
+ msgstr ""
358
+
359
+ #: bin/asl-populate:33
360
+ msgid "first gid number to allocate"
361
+ msgstr ""
362
+
363
+ #: bin/asl-populate:36
364
+ msgid "administrator login name"
365
+ msgstr ""
366
+
367
+ #: bin/asl-populate:39
368
+ msgid "administrator's uid number"
369
+ msgstr ""
370
+
371
+ #: bin/asl-populate:42
372
+ msgid "administrator's gid number"
373
+ msgstr ""
374
+
375
+ #: bin/asl-populate:45
376
+ msgid "guest login name"
377
+ msgstr ""
378
+
379
+ #: bin/asl-populate:48
380
+ msgid "guest's uid number"
381
+ msgstr ""
382
+
383
+ #: bin/asl-populate:51
384
+ msgid "guest's gid number"
385
+ msgstr ""
386
+
387
+ #: bin/asl-populate:54
388
+ msgid "export LDIF file"
389
+ msgstr ""
390
+
391
+ #: bin/asl-populate:76
392
+ msgid "Password for %s: "
393
+ msgstr ""
394
+
395
+ #: bin/asl-populate:78
396
+ msgid "Retype password for %s: "
397
+ msgstr ""
398
+
399
+ #: bin/asl-populate:81
400
+ msgid "Passwords don't match."
401
+ msgstr ""
402
+
403
+ #: bin/asl-groupmod:17 bin/asl-groupadd:15
404
+ msgid "GID number"
405
+ msgstr ""
406
+
407
+ #: bin/asl-groupmod:19
408
+ msgid "gid can be non unique"
409
+ msgstr ""
410
+
411
+ #: bin/asl-groupmod:24
412
+ msgid "new group name"
413
+ msgstr ""
414
+
415
+ #: bin/asl-groupmod:79
416
+ msgid "there is duplicated member in adding and deleting members: %s"
417
+ msgid_plural "there are duplicated members in adding and deleting members: %s"
418
+ msgstr[0] ""
419
+ msgstr[1] ""
420
+
421
+ #: bin/asl-groupmod:117 bin/asl-samba-groupadd:36 bin/asl-groupadd:48
422
+ msgid "group already exists: %s"
423
+ msgstr ""
424
+
425
+ #: bin/asl-usermod:48
426
+ msgid "gecos"
427
+ msgstr ""
428
+
429
+ #: bin/asl-usermod:52
430
+ msgid "move home directory"
431
+ msgstr ""
432
+
433
+ #: bin/asl-usermod:57
434
+ msgid "new user name (cn and dn are updated)"
435
+ msgstr ""
436
+
437
+ #: bin/asl-usermod:62
438
+ msgid "uid can be non unique "
439
+ msgstr ""
440
+
441
+ #: bin/asl-usermod:72
442
+ msgid "replace supplementary groups "
443
+ msgstr ""
444
+
445
+ #: bin/asl-usermod:119
446
+ msgid "disable this user"
447
+ msgstr ""
448
+
449
+ #: bin/asl-usermod:122
450
+ msgid "enable this user"
451
+ msgstr ""
452
+
453
+ #: bin/asl-usermod:235 bin/asl-usermod:239
454
+ msgid "not implemented."
455
+ msgstr ""
456
+
457
+ #: bin/asl-groupadd:17
458
+ msgid "group type"
459
+ msgstr ""
460
+
461
+ #: bin/asl-groupadd:20
462
+ msgid "print the gid number to stdout"
463
+ msgstr ""