summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/samba/smb.conf
diff options
context:
space:
mode:
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