]> gitweb.fluxo.info Git - puppet-samba.git/commitdiff
Syntax highlight readme
authorAdam Jahn <ajjahn@gmail.com>
Mon, 7 Dec 2015 18:50:19 +0000 (13:50 -0500)
committerAdam Jahn <ajjahn@gmail.com>
Mon, 7 Dec 2015 18:50:19 +0000 (13:50 -0500)
README.md

index 238d0d2dd430602f76288e1c9895782edabd9ff4..6ac11e277cbe1ae80c4c403d6b2513fda1cd4901 100644 (file)
--- a/README.md
+++ b/README.md
@@ -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.