diff options
author | Adam Jahn <ajjahn@gmail.com> | 2015-04-11 16:50:49 -0400 |
---|---|---|
committer | Adam Jahn <ajjahn@gmail.com> | 2015-04-11 16:50:49 -0400 |
commit | f98950a67ab3c4019e66ee29ddb7e9a4efc78111 (patch) | |
tree | fe5c0fdd564bb2d1629f4b45a020ca408651ace3 /README.md | |
parent | 38a8c49ffaf3a9418b8e0a1b32592730363e91b7 (diff) | |
download | puppet-samba-f98950a67ab3c4019e66ee29ddb7e9a4efc78111.tar.gz puppet-samba-f98950a67ab3c4019e66ee29ddb7e9a4efc78111.tar.bz2 |
Update readme
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 32 |
1 files changed, 17 insertions, 15 deletions
@@ -1,5 +1,7 @@ # Puppet Samba Module +[![Build Status](https://travis-ci.org/ajjahn/puppet-samba.png?branch=master)](https://travis-ci.org/ajjahn/puppet-samba) + Module for provisioning Samba Tested on Ubuntu 12.04, CentOS 6.3, patches to support other operating systems are welcome. @@ -20,26 +22,26 @@ Tweak and add the following to your site manifest: node 'server.example.com' { class {'samba::server': - workgroup => 'example', + workgroup => 'example', server_string => "Example Samba Server", - interfaces => "eth0 lo", - security => 'share' + 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, + 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', + force_group => 'group', + force_user => 'user', + copy => 'some-other-share', } } |