Forge Home

samba

Install, manage and configure samba server, client and shares.

6,013 downloads

841 latest version

5.0 quality score

We run a couple of automated
scans to help you access a
module's quality. Each module is
given a score based on how well
the author has formatted their
code and documentation and
modules are also checked for
malware using VirusTotal.

Please note, the information below
is for guidance only and neither of
these methods should be considered
an endorsement by Puppet.

Version information

  • 2.0.0 (latest)
  • 1.4.1
  • 1.4.0
  • 1.3.1
  • 1.3.0
  • 1.2.0
  • 1.1.0
  • 1.0.0
released Nov 19th 2021
This version is compatible with:
  • Puppet Enterprise 2023.2.x, 2023.1.x, 2023.0.x, 2021.7.x, 2021.6.x, 2021.5.x, 2021.4.x, 2021.3.x, 2021.2.x, 2021.1.x, 2021.0.x, 2019.8.x, 2019.7.x, 2019.5.x, 2019.4.x, 2019.3.x, 2019.2.x, 2019.1.x, 2019.0.x
  • Puppet >= 6.0.0 < 8.0.0
  • , , OracleLinux, Fedora, AlmaLinux, , , , ArchLinux

Start using this module

  • r10k or Code Manager
  • Bolt
  • Manual installation
  • Direct download

Add this module to your Puppetfile:

mod 'rehan-samba', '2.0.0'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add rehan-samba
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install rehan-samba --version 2.0.0

Direct download is not typically how you would use a Puppet module to manage your infrastructure, but you may want to download the module in order to inspect the code.

Download
Tags: samba, cifs, smb, wins

Documentation

rehan/samba — version 2.0.0 Nov 19th 2021

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.