summaryrefslogtreecommitdiffstats
path: root/core/modules/samba
diff options
context:
space:
mode:
authorSebastian2016-04-25 12:01:08 +0200
committerSebastian2016-04-25 12:01:08 +0200
commit5acda3eaeabae9045609539303a8c12c4ce401f1 (patch)
tree7e71975f8570b05aafe2ea6ec0e242a8912387bb /core/modules/samba
parentinitial commit (diff)
downloadmltk-5acda3eaeabae9045609539303a8c12c4ce401f1.tar.gz
mltk-5acda3eaeabae9045609539303a8c12c4ce401f1.tar.xz
mltk-5acda3eaeabae9045609539303a8c12c4ce401f1.zip
merge with latest dev version
Diffstat (limited to 'core/modules/samba')
-rw-r--r--core/modules/samba/module.build26
-rw-r--r--core/modules/samba/module.conf24
-rw-r--r--core/modules/samba/module.conf.opensuse24
-rw-r--r--core/modules/samba/module.conf.ubuntu20
4 files changed, 94 insertions, 0 deletions
diff --git a/core/modules/samba/module.build b/core/modules/samba/module.build
new file mode 100644
index 00000000..a0a60831
--- /dev/null
+++ b/core/modules/samba/module.build
@@ -0,0 +1,26 @@
+fetch_source() {
+ :
+}
+
+build() {
+ COPYLIST="list_dpkg_output"
+ [ -e "$COPYLIST" ] && rm "$COPYLIST"
+
+ if [ "x$PACKET_MANAGER" == "xzypper" ]; then
+ if [ $(zypper lr | grep -ci filesystems) -eq 0 ]; then
+ zypper addrepo http://download.opensuse.org/repositories/filesystems/openSUSE_${SYS_VERSION} Filesystems
+ pinfo "Repository added: OpenSuse Build filesystems"
+ fi
+ # Ubuntu writes to /etc, Suse does not:
+ mkdir "$MODULE_BUILD_DIR"/etc/
+ cp /usr/share/doc/packages/smbnetfs/smbnetfs.conf "$MODULE_BUILD_DIR"/etc/
+ fi
+
+ list_packet_files >> "$COPYLIST"
+ tarcopy "$(cat "$COPYLIST" | sort -u)" "${MODULE_BUILD_DIR}"
+ return 0
+}
+
+post_copy() {
+ :
+}
diff --git a/core/modules/samba/module.conf b/core/modules/samba/module.conf
new file mode 100644
index 00000000..00063187
--- /dev/null
+++ b/core/modules/samba/module.conf
@@ -0,0 +1,24 @@
+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
+"
diff --git a/core/modules/samba/module.conf.opensuse b/core/modules/samba/module.conf.opensuse
new file mode 100644
index 00000000..fd06e50a
--- /dev/null
+++ b/core/modules/samba/module.conf.opensuse
@@ -0,0 +1,24 @@
+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"
diff --git a/core/modules/samba/module.conf.ubuntu b/core/modules/samba/module.conf.ubuntu
new file mode 100644
index 00000000..20bb46ba
--- /dev/null
+++ b/core/modules/samba/module.conf.ubuntu
@@ -0,0 +1,20 @@
+REQUIRED_INSTALLED_PACKAGES="
+ samba
+ smbclient
+ winbind
+ krb5-user
+ cifs-utils
+ smbnetfs
+ fuse
+ keyutils
+"
+REQUIRED_CONTENT_PACKAGES="
+ samba
+ smbclient
+ winbind
+ krb5-user
+ cifs-utils
+ smbnetfs
+ fuse
+ keyutils
+"