blob: ac4bd8489ddad57556341c707db48100126241c4 (
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_BINARIES="
smbd
nmbd
smbclient
winbindd
smbnetfs
fusermount
keyctl
request-key
key.dns_resolver
"
REQUIRED_FILES="
/etc/smbnetfs.conf
/etc/request-key.conf
/etc/request-key.d
"
# TODO dont copy all the binaries, strip the list down.
REQUIRED_DIRECTORIES="
/usr/bin
"
# TODO check if the /var/lib/samba/*.tdg can be generated by mltk.
REQUIRED_SYSTEM_FILES="
/var/lib/samba
"
|