-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsamba-server.patch
More file actions
502 lines (427 loc) · 16.8 KB
/
samba-server.patch
File metadata and controls
502 lines (427 loc) · 16.8 KB
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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
diff --git a/src/modules/SambaBackendLDAP.pm b/src/modules/SambaBackendLDAP.pm
index c23b5dc..fe2f2f1 100644
--- a/src/modules/SambaBackendLDAP.pm
+++ b/src/modules/SambaBackendLDAP.pm
@@ -460,7 +460,7 @@ BEGIN{$TYPEINFO{UpdateScripts}=["function","boolean","string","string"]}
sub UpdateScripts {
my ($self,$name,$location) = @_;
SambaConfig->GlobalSetMap({
- "add machine script" => "/sbin/yast /usr/share/YaST2/data/add_machine.ycp %m\$",
+ "add machine script" => "/sbin/yast /usr/share/YaST2/data/add_machine.rb %m\$",
});
return TRUE;
}
diff --git a/testsuite/Modules/Makefile.am b/testsuite/Modules/Makefile.am
index d9b12b0..e85fbc8 100644
--- a/testsuite/Modules/Makefile.am
+++ b/testsuite/Modules/Makefile.am
@@ -5,7 +5,7 @@
#
AUTOMAKE_OPTIONS = dejagnu
-EXTRA_DIST = $(wildcard tests/*.out) $(wildcard tests/*.err) $(wildcard tests/*.ycp) $(wildcard tests/*.yh)
+EXTRA_DIST = $(wildcard tests/*.out) $(wildcard tests/*.err) $(wildcard tests/*.rb)
testsuite_prepare = @ydatadir@/testsuite/Makefile.testsuite
diff --git a/testsuite/YaPI/Makefile.am b/testsuite/YaPI/Makefile.am
index d9b12b0..956c637 100644
--- a/testsuite/YaPI/Makefile.am
+++ b/testsuite/YaPI/Makefile.am
@@ -5,7 +5,10 @@
#
AUTOMAKE_OPTIONS = dejagnu
-EXTRA_DIST = $(wildcard tests/*.out) $(wildcard tests/*.err) $(wildcard tests/*.ycp) $(wildcard tests/*.yh)
+EXTRA_DIST = $(wildcard tests/*.out) $(wildcard tests/*.err) $(wildcard tests/*.rb)
+
+Y2BASEFLAGS = -I tests
+export Y2BASEFLAGS
testsuite_prepare = @ydatadir@/testsuite/Makefile.testsuite
diff --git a/testsuite/YaPI/tests/YaPI-AddSAM-2.ycp b/testsuite/YaPI/tests/YaPI-AddSAM-2.ycp
index c4ae80b..9aba24a 100644
--- a/testsuite/YaPI/tests/YaPI-AddSAM-2.ycp
+++ b/testsuite/YaPI/tests/YaPI-AddSAM-2.ycp
@@ -8,7 +8,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
import "YaPI::Samba";
diff --git a/testsuite/YaPI/tests/YaPI-AddSAM.ycp b/testsuite/YaPI/tests/YaPI-AddSAM.ycp
index 5999705..43d00b3 100644
--- a/testsuite/YaPI/tests/YaPI-AddSAM.ycp
+++ b/testsuite/YaPI/tests/YaPI-AddSAM.ycp
@@ -8,7 +8,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
import "YaPI::Samba";
diff --git a/testsuite/YaPI/tests/YaPI-AddShare.ycp b/testsuite/YaPI/tests/YaPI-AddShare.ycp
index 0f3475b..db6b344 100644
--- a/testsuite/YaPI/tests/YaPI-AddShare.ycp
+++ b/testsuite/YaPI/tests/YaPI-AddShare.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import(
$["global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-DeleteSAM-2.ycp b/testsuite/YaPI/tests/YaPI-DeleteSAM-2.ycp
index c8238fe..5e9489e 100644
--- a/testsuite/YaPI/tests/YaPI-DeleteSAM-2.ycp
+++ b/testsuite/YaPI/tests/YaPI-DeleteSAM-2.ycp
@@ -8,7 +8,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-DeleteSAM-3.ycp b/testsuite/YaPI/tests/YaPI-DeleteSAM-3.ycp
index b801f7e..9ebe44e 100644
--- a/testsuite/YaPI/tests/YaPI-DeleteSAM-3.ycp
+++ b/testsuite/YaPI/tests/YaPI-DeleteSAM-3.ycp
@@ -8,7 +8,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import($[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-DeleteSAM.ycp b/testsuite/YaPI/tests/YaPI-DeleteSAM.ycp
index 0a8901e..dda4a2e 100644
--- a/testsuite/YaPI/tests/YaPI-DeleteSAM.ycp
+++ b/testsuite/YaPI/tests/YaPI-DeleteSAM.ycp
@@ -8,7 +8,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-DeleteShare-2.ycp b/testsuite/YaPI/tests/YaPI-DeleteShare-2.ycp
index 4105ad3..0771cb1 100644
--- a/testsuite/YaPI/tests/YaPI-DeleteShare-2.ycp
+++ b/testsuite/YaPI/tests/YaPI-DeleteShare-2.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-DeleteShare.ycp b/testsuite/YaPI/tests/YaPI-DeleteShare.ycp
index 77418fd..83f0797 100644
--- a/testsuite/YaPI/tests/YaPI-DeleteShare.ycp
+++ b/testsuite/YaPI/tests/YaPI-DeleteShare.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-DetermineRole1.ycp b/testsuite/YaPI/tests/YaPI-DetermineRole1.ycp
index d478e35..0abfe06 100644
--- a/testsuite/YaPI/tests/YaPI-DetermineRole1.ycp
+++ b/testsuite/YaPI/tests/YaPI-DetermineRole1.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $["global" : $[
"workgroup" : "Test",
diff --git a/testsuite/YaPI/tests/YaPI-DetermineRole2.ycp b/testsuite/YaPI/tests/YaPI-DetermineRole2.ycp
index 617fb20..d55ee33 100644
--- a/testsuite/YaPI/tests/YaPI-DetermineRole2.ycp
+++ b/testsuite/YaPI/tests/YaPI-DetermineRole2.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $["global" : $[
"workgroup" : "Test",
diff --git a/testsuite/YaPI/tests/YaPI-DetermineRole3.ycp b/testsuite/YaPI/tests/YaPI-DetermineRole3.ycp
index e51f67e..e3af9ca 100644
--- a/testsuite/YaPI/tests/YaPI-DetermineRole3.ycp
+++ b/testsuite/YaPI/tests/YaPI-DetermineRole3.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $["global" : $[
"workgroup" : "Test",
diff --git a/testsuite/YaPI/tests/YaPI-EditDefaultSAM.ycp b/testsuite/YaPI/tests/YaPI-EditDefaultSAM.ycp
index 13b3f67..006b8f6 100644
--- a/testsuite/YaPI/tests/YaPI-EditDefaultSAM.ycp
+++ b/testsuite/YaPI/tests/YaPI-EditDefaultSAM.ycp
@@ -8,7 +8,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-EditSAMConfiguration.ycp b/testsuite/YaPI/tests/YaPI-EditSAMConfiguration.ycp
index 2e1e1c5..9c03416 100644
--- a/testsuite/YaPI/tests/YaPI-EditSAMConfiguration.ycp
+++ b/testsuite/YaPI/tests/YaPI-EditSAMConfiguration.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-EditServerAsBDC.ycp b/testsuite/YaPI/tests/YaPI-EditServerAsBDC.ycp
index 5758eda..cb3fd6a 100644
--- a/testsuite/YaPI/tests/YaPI-EditServerAsBDC.ycp
+++ b/testsuite/YaPI/tests/YaPI-EditServerAsBDC.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
map r = depth_union(r_common, $["etc" : $[ "nsswitch_conf" : $[
"passwd" : "",
diff --git a/testsuite/YaPI/tests/YaPI-EditServerAsPDC.ycp b/testsuite/YaPI/tests/YaPI-EditServerAsPDC.ycp
index 35640b6..110ace2 100644
--- a/testsuite/YaPI/tests/YaPI-EditServerAsPDC.ycp
+++ b/testsuite/YaPI/tests/YaPI-EditServerAsPDC.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
map r = depth_union(r_common, $["etc" : $[ "nsswitch_conf" : $[
"passwd" : "",
diff --git a/testsuite/YaPI/tests/YaPI-EditServerAsStandalone.ycp b/testsuite/YaPI/tests/YaPI-EditServerAsStandalone.ycp
index 4dc9998..c0effe2 100644
--- a/testsuite/YaPI/tests/YaPI-EditServerAsStandalone.ycp
+++ b/testsuite/YaPI/tests/YaPI-EditServerAsStandalone.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
map r = depth_union(r_common, $["etc" : $[ "nsswitch_conf" : $[
"passwd" : "",
diff --git a/testsuite/YaPI/tests/YaPI-EditServerDescription.ycp b/testsuite/YaPI/tests/YaPI-EditServerDescription.ycp
index 3b7216f..31233bc 100644
--- a/testsuite/YaPI/tests/YaPI-EditServerDescription.ycp
+++ b/testsuite/YaPI/tests/YaPI-EditServerDescription.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $["global" : $[
"workgroup" : "Test",
diff --git a/testsuite/YaPI/tests/YaPI-EditService.ycp b/testsuite/YaPI/tests/YaPI-EditService.ycp
index 92c02aa..1a3e1c3 100644
--- a/testsuite/YaPI/tests/YaPI-EditService.ycp
+++ b/testsuite/YaPI/tests/YaPI-EditService.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
map r = depth_union(r_common, $[]);
map w = depth_union(w_common, $[]);
diff --git a/testsuite/YaPI/tests/YaPI-EditShare.ycp b/testsuite/YaPI/tests/YaPI-EditShare.ycp
index bf4cf42..c861caf 100644
--- a/testsuite/YaPI/tests/YaPI-EditShare.ycp
+++ b/testsuite/YaPI/tests/YaPI-EditShare.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-EnableHomes.ycp b/testsuite/YaPI/tests/YaPI-EnableHomes.ycp
index 4841fec..68234ad 100644
--- a/testsuite/YaPI/tests/YaPI-EnableHomes.ycp
+++ b/testsuite/YaPI/tests/YaPI-EnableHomes.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $["global" : $[
"_modified" : "1",
diff --git a/testsuite/YaPI/tests/YaPI-EnableNetlogon.ycp b/testsuite/YaPI/tests/YaPI-EnableNetlogon.ycp
index adfa1b7..ec73e18 100644
--- a/testsuite/YaPI/tests/YaPI-EnableNetlogon.ycp
+++ b/testsuite/YaPI/tests/YaPI-EnableNetlogon.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $["global" : $[
"_modified" : "1",
diff --git a/testsuite/YaPI/tests/YaPI-EnablePrinters.ycp b/testsuite/YaPI/tests/YaPI-EnablePrinters.ycp
index d0fbb1a..58909eb 100644
--- a/testsuite/YaPI/tests/YaPI-EnablePrinters.ycp
+++ b/testsuite/YaPI/tests/YaPI-EnablePrinters.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-EnableShare-2.ycp b/testsuite/YaPI/tests/YaPI-EnableShare-2.ycp
index ee8cc9a..ba7db63 100644
--- a/testsuite/YaPI/tests/YaPI-EnableShare-2.ycp
+++ b/testsuite/YaPI/tests/YaPI-EnableShare-2.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-EnableShare.ycp b/testsuite/YaPI/tests/YaPI-EnableShare.ycp
index 4210caf..606531f 100644
--- a/testsuite/YaPI/tests/YaPI-EnableShare.ycp
+++ b/testsuite/YaPI/tests/YaPI-EnableShare.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-GetAllDirectories.ycp b/testsuite/YaPI/tests/YaPI-GetAllDirectories.ycp
index 056fbcc..39605df 100644
--- a/testsuite/YaPI/tests/YaPI-GetAllDirectories.ycp
+++ b/testsuite/YaPI/tests/YaPI-GetAllDirectories.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-GetAllPrinters.ycp b/testsuite/YaPI/tests/YaPI-GetAllPrinters.ycp
index 33057d6..073e286 100644
--- a/testsuite/YaPI/tests/YaPI-GetAllPrinters.ycp
+++ b/testsuite/YaPI/tests/YaPI-GetAllPrinters.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-GetSAMBackends.ycp b/testsuite/YaPI/tests/YaPI-GetSAMBackends.ycp
index 5cfa4a7..a68daf1 100644
--- a/testsuite/YaPI/tests/YaPI-GetSAMBackends.ycp
+++ b/testsuite/YaPI/tests/YaPI-GetSAMBackends.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $["global" : $[
"workgroup" : "Test",
diff --git a/testsuite/YaPI/tests/YaPI-GetSAMConfiguration.ycp b/testsuite/YaPI/tests/YaPI-GetSAMConfiguration.ycp
index 41f851a..f9cc560 100644
--- a/testsuite/YaPI/tests/YaPI-GetSAMConfiguration.ycp
+++ b/testsuite/YaPI/tests/YaPI-GetSAMConfiguration.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-GetServerDescription.ycp b/testsuite/YaPI/tests/YaPI-GetServerDescription.ycp
index 2132c0a..dd1492e 100644
--- a/testsuite/YaPI/tests/YaPI-GetServerDescription.ycp
+++ b/testsuite/YaPI/tests/YaPI-GetServerDescription.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $["global" : $[
"workgroup" : "Test",
diff --git a/testsuite/YaPI/tests/YaPI-GetServiceStatus.ycp b/testsuite/YaPI/tests/YaPI-GetServiceStatus.ycp
index 95d279f..cf6cd5f 100644
--- a/testsuite/YaPI/tests/YaPI-GetServiceStatus.ycp
+++ b/testsuite/YaPI/tests/YaPI-GetServiceStatus.ycp
@@ -6,7 +6,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
map r = depth_union(r_common, $[]);
map w = depth_union(w_common, $[]);
diff --git a/testsuite/YaPI/tests/YaPI-GetShare.ycp b/testsuite/YaPI/tests/YaPI-GetShare.ycp
index 806b179..c6aa0d9 100644
--- a/testsuite/YaPI/tests/YaPI-GetShare.ycp
+++ b/testsuite/YaPI/tests/YaPI-GetShare.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"global" : $[
diff --git a/testsuite/YaPI/tests/YaPI-ShareEnabled.ycp b/testsuite/YaPI/tests/YaPI-ShareEnabled.ycp
index 3b224c7..1d6c62f 100644
--- a/testsuite/YaPI/tests/YaPI-ShareEnabled.ycp
+++ b/testsuite/YaPI/tests/YaPI-ShareEnabled.ycp
@@ -7,7 +7,7 @@
import "SambaConfig";
include "testsuite.ycp";
- include "./tests/tests-common.yh";
+ include "tests-common.yh";
SambaConfig::Import( $[
"lp2" : $[
diff --git a/users-plugin/Makefile.am b/users-plugin/Makefile.am
index 71a7009..e69de29 100644
--- a/users-plugin/Makefile.am
+++ b/users-plugin/Makefile.am
@@ -1,15 +0,0 @@
-# Makefile.am for mail-server/src
-
-yncludedir = @yncludedir@/samba-server
-
-client_DATA = \
- users_plugin_samba.ycp \
- users_plugin_samba_groups.ycp
-
-module_DATA = \
- UsersPluginSamba.pm \
- UsersPluginSambaGroups.pm
-
-EXTRA_DIST = $(client_DATA) $(module_DATA)
-
-include $(top_srcdir)/Makefile.am.common
diff --git a/yast2-samba-server.spec.in b/yast2-samba-server.spec.in
index 025c57d..1bd3af3 100644
--- a/yast2-samba-server.spec.in
+++ b/yast2-samba-server.spec.in
@@ -23,6 +23,8 @@ Supplements: samba
BuildArchitectures: noarch
+Requires: yast2-ruby-bindings >= 1.0.0
+
Summary: YaST2 - Samba Server Configuration
%description
@@ -41,8 +43,8 @@ configuration.
%defattr(-,root,root)
%dir @yncludedir@/samba-server
@yncludedir@/samba-server/*
-@ydatadir@/*.ycp
-@clientdir@/*.ycp
+@ydatadir@/*.rb
+@clientdir@/*.rb
@moduledir@/*
@desktopdir@/samba-server.desktop
@schemadir@/autoyast/rnc/samba-server.rnc