summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/samba/smb.conf
diff options
context:
space:
mode:
authorMarc Kleine-Budde <mkl@pengutronix.de>2015-06-11 12:18:01 +0200
committerMarc Kleine-Budde <mkl@pengutronix.de>2015-06-18 16:22:13 +0200
commit28db1773524eb763569939d4066e32dbf50c69a0 (patch)
tree964e2f4165b48179d7ac39ac8d472788d60f99f0 /projectroot/etc/samba/smb.conf
parent878707bd943a04fc8e3a55a151499359e81ce780 (diff)
downloadptxdist-28db1773524eb763569939d4066e32dbf50c69a0.tar.gz
ptxdist-28db1773524eb763569939d4066e32dbf50c69a0.tar.xz
generic: rename generic -> projectroot
Signed-off-by: Marc Kleine-Budde <mkl@pengutronix.de>
Diffstat (limited to 'projectroot/etc/samba/smb.conf')
-rw-r--r--projectroot/etc/samba/smb.conf38
1 files changed, 38 insertions, 0 deletions
diff --git a/projectroot/etc/samba/smb.conf b/projectroot/etc/samba/smb.conf
new file mode 100644
index 000000000..188d85c1f
--- /dev/null
+++ b/projectroot/etc/samba/smb.conf
@@ -0,0 +1,38 @@
+; /etc/samba/smb.conf
+; Sample smbconf file provided by ptxdist. Please
+; consult samba manual page if you wish to make
+; changes
+[global]
+; guest account = nobody
+ server string = PTXdist sample samba server
+ log file = /var/log/samba-log.%m
+ lock directory = /var/lock
+ share modes = yes
+ security = share
+ encrypt passwords = no
+ guest account = root
+ interfaces = eth0
+
+[homes]
+ comment = Home Directories
+ browseable = no
+ writable = no
+ create mask = 0700
+ directory mask = 0700
+
+[share]
+ comment = Data Directory
+ path = /home
+ browseable = yes
+ read only = no
+ create mode = 0750
+ public = yes
+
+[printers]
+ comment = All Printers
+ browseable = no
+ path = /tmp
+ printable = yes
+ public = no
+ writable = no
+ create mode = 0700