rehan-samba


Keywords
samba, cifs, smb, wins
License
Apache-2.0
Install
puppet module install rehan-samba --version 1.0.0

Documentation

rehan-samba

Puppet Forge Build Status

Table of Contents

  1. Overview
  2. Module Description
  3. Setup
  4. Usage
  5. Dependencies
  6. Development

Overview

The rehan-samba module manages the Samba/CIFS, the virtual filesystem based on SMB protocol.

Module Description

A puppet module for managing the installation and configuration of samba. This module installs and configures the samba server and client packages and allows configuration of user specific SMB shares.

Implemented Features:

  • Installs samba server package
  • Installs samba client package
  • Allows managing global SMB configurations parameters.
  • Allows managing SMB shares.

Setup

In order to install rehan-samba, run the following command:

$ puppet module install rehan-samba

The module does expect all the data to be provided through 'Hiera'. See Usage for examples on how to configure it.

Requirements

This module is designed to be as clean and compliant with latest puppet code guidelines.

Usage

Example Usage (puppet dsl)

class { 'samba':
  package_ensure       => 'installed'
  os_level             => 50,
  workgroup            => 'EXAMPLE',
  wins_server          => '10.10.10.10',
  server_string        => 'Example File Server 01',
  netbios_name         => 'F01',
  interfaces           => [ 'lo', 'eth0' ],
  hosts_allow          => [ '127.', '192.168.' ],
  hosts_deny           => [ 'ALL' ]
  local_master         => 'yes',
  preferred_master     => 'yes',
  map_to_guest         => 'Bad User',
  shares => {
    'homes' => {
      comment    => 'Home Directories',
      browseable => false,
      path       => '/home',
      writable   => true,
    },
    'pictures' => {
      comment        => 'Pictures',
      path           => '/srv/pictures',
      browseable     => true,
      writable       => true,
      create_mask    => '1777',
      directory_mask => '1777',
    },
  },
}

Example Usage (hiera)

All of this data can be provided through Hiera.

YAML

samba::package_ensure: 'installed'
samba::os_level: 50
samba::workgroup: 'EXAMPLE'
samba::wins_server: '10.10.10.10'
samba::server_string: 'Example File Server 01'
samba::netbios_name: 'F01'
samba::interfaces:
   - 'lo'
   - 'eth0'
samba::hosts_allow:
   - '127.'
   - '192.168.'
samba::hosts_deny:
   - 'ALL'
samba::local_master: 'yes'
samba::preferred_master: 'yes'
samba::map_to_guest: 'Bad User'
samba::firewall_manage: true
samba::shares:
   'homes':
      comment: 'Home Directories'
      browseable: false
      path: '/home'
      writable: true
    'pictures':
      comment: 'Pictures'
      path: '/srv/pictures'
      browseable: true
      writable: true
      create_mask: '1777'
      directory_mask: '1777'

Dependencies

Development

You can submit pull requests and create issues through the official page of this module on GitHub. Please do report any bug and suggest new features/improvements.