blob: 8e6e143623fbe50a8142e96b8c1885a73a74c48f (
plain) (
blame)
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
|
#!/bin/bash
REQUIRED_INSTALLED_PACKAGES="
samba
samba-client
samba-winbind
krb5-client
cifs-utils
smbnetfs
fuse
keyutils
"
REQUIRED_CONTENT_PACKAGES="
samba
samba-client
samba-winbind
krb5-client
cifs-utils
smbnetfs
fuse
keyutils
"
# This is just a list for grep excludes used in samba.build opensuse branch
# Please use pipe symbol and backslash (\|) as separator as being used in grep
REQUIRED_PACKET_FILES_BLACKLIST="/etc/samba/smbpasswd\|/ding/dong"
|