Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
force_directory_mask does not exist (anymore), the replacement should be force_directory_mode. Additionally, file modes should be passed as quoted strings, not as unquoted numbers.
  • Loading branch information
FlorianSW committed Feb 6, 2018
1 parent 1020f7c commit 2c9a5c1
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,10 +42,10 @@ node 'server.example.com' {
guest_ok => true,
guest_account => "guest",
browsable => false,
create_mask => 0777,
force_create_mask => 0777,
directory_mask => 0777,
force_directory_mask => 0777,
create_mask => '0777',
force_create_mode => '0777',
directory_mask => '0777',
force_directory_mask => '0777',
force_group => 'group',
force_user => 'user',
copy => 'some-other-share',
Expand All @@ -69,8 +69,8 @@ node 'server.example.com' {
path => "$smb_share",
browsable => true,
writable => true,
create_mask => 0770,
directory_mask => 0770,
create_mask => '0770',
directory_mask => '0770',
}
class { 'samba::server::ads':
Expand Down

0 comments on commit 2c9a5c1

Please sign in to comment.