summaryrefslogtreecommitdiffstats
path: root/projectroot/etc/samba/smb.conf
blob: 188d85c1f46976ec2a9162a3e2d3283680552a2e (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
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