diff options
author | Adam Jahn <ajjahn@gmail.com> | 2015-12-07 13:50:19 -0500 |
---|---|---|
committer | Adam Jahn <ajjahn@gmail.com> | 2015-12-07 13:50:19 -0500 |
commit | 83bbfcea2c654a8138bf180e4815fa72771b5674 (patch) | |
tree | 8fc119bced873acae14c9caed03d3dcd41ff6875 | |
parent | 041e4a74de3dca2462be512cec620804a6eefe09 (diff) | |
download | puppet-samba-83bbfcea2c654a8138bf180e4815fa72771b5674.tar.gz puppet-samba-83bbfcea2c654a8138bf180e4815fa72771b5674.tar.bz2 |
Syntax highlight readme
-rw-r--r-- | README.md | 102 |
1 files changed, 53 insertions, 49 deletions
@@ -20,58 +20,62 @@ or Tweak and add the following to your site manifest: - node 'server.example.com' { - class {'samba::server': - workgroup => 'example', - server_string => "Example Samba Server", - interfaces => "eth0 lo", - security => 'share' - } - - samba::server::share {'example-share': - comment => 'Example Share', - path => '/path/to/share', - guest_only => true, - guest_ok => true, - guest_account => "guest", - browsable => false, - create_mask => 0777, - force_create_mask => 0777, - directory_mask => 0777, - force_directory_mask => 0777, - force_group => 'group', - force_user => 'user', - copy => 'some-other-share', - } - } +```puppet +node 'server.example.com' { + class {'samba::server': + workgroup => 'example', + server_string => "Example Samba Server", + interfaces => "eth0 lo", + security => 'share' + } + + samba::server::share {'example-share': + comment => 'Example Share', + path => '/path/to/share', + guest_only => true, + guest_ok => true, + guest_account => "guest", + browsable => false, + create_mask => 0777, + force_create_mask => 0777, + directory_mask => 0777, + force_directory_mask => 0777, + force_group => 'group', + force_user => 'user', + copy => 'some-other-share', + } +} +``` If you want join Samba server to Active Directory. Tested on Ubuntu 12.04. - node 'server.example.com' { - class {'samba::server': - workgroup => 'example', - server_string => "Example Samba Server", - interfaces => "eth0 lo", - security => 'ads' - } - - samba::server::share {'ri-storage': - comment => 'RBTH User Storage', - path => "$smb_share", - browsable => true, - writable => true, - create_mask => 0770, - directory_mask => 0770, - } - - class { 'samba::server::ads': - winbind_acct => $::domain_admin, - winbind_pass => $::admin_password, - realm => 'EXAMPLE.COM', - nsswitch => true, - target_ou => "Nix_Mashine" - } - } +```puppet +node 'server.example.com' { + class {'samba::server': + workgroup => 'example', + server_string => "Example Samba Server", + interfaces => "eth0 lo", + security => 'ads' + } + + samba::server::share {'ri-storage': + comment => 'RBTH User Storage', + path => "$smb_share", + browsable => true, + writable => true, + create_mask => 0770, + directory_mask => 0770, + } + + class { 'samba::server::ads': + winbind_acct => $::domain_admin, + winbind_pass => $::admin_password, + realm => 'EXAMPLE.COM', + nsswitch => true, + target_ou => "Nix_Mashine" + } +} +``` Most configuration options are optional. |