]> gitweb.fluxo.info Git - puppet-samba.git/commitdiff
Update readme
authorAdam Jahn <ajjahn@gmail.com>
Sat, 11 Apr 2015 20:50:49 +0000 (16:50 -0400)
committerAdam Jahn <ajjahn@gmail.com>
Sat, 11 Apr 2015 20:50:49 +0000 (16:50 -0400)
README.md

index 6bb9a79fe39b483a2bf87217790f48df35d67bc5..a0595f7b2a8874277ae232da690cbff7f786f438 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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',
       }
     }