Forge Home

epfl_sso

UNIX single sign-on using EPFL's LDAP and Kerberos servers

27,198 downloads

1,433 latest version

2.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

  • 1.2.1 (latest)
  • 1.2.0
  • 1.1.8
  • 1.1.7
  • 1.1.6
  • 1.1.5
  • 1.1.4
  • 1.1.3
  • 1.1.2
  • 1.1.1
  • 1.1.0
  • 1.0.2
  • 1.0.1
  • 1.0.0
  • 0.8.6
  • 0.8.5
  • 0.8.4
  • 0.8.3
  • 0.8.2
  • 0.8.1
  • 0.8.0
  • 0.7.0
  • 0.6.6
  • 0.6.5
  • 0.6.4
  • 0.6.3
  • 0.6.2
  • 0.6.1
  • 0.6.0
  • 0.5.10
  • 0.5.9
  • 0.5.8
  • 0.5.7
  • 0.5.6
  • 0.5.5
  • 0.5.4
  • 0.5.3
  • 0.5.2
  • 0.5.1
  • 0.5.0
  • 0.4.14
  • 0.4.13
  • 0.4.12
  • 0.4.10
  • 0.4.9
  • 0.4.8
  • 0.4.7
  • 0.4.6
  • 0.4.5
  • 0.4.4
  • 0.4.3
  • 0.4.2
  • 0.4.1
  • 0.3.0
  • 0.2.5
  • 0.2.4
  • 0.2.3
  • 0.2.2
  • 0.2.1
  • 0.2.0
released Sep 22nd 2017

Start using this module

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

Add this module to your Puppetfile:

mod 'epflsti-epfl_sso', '0.4.8'
Learn more about managing modules with a Puppetfile

Add this module to your Bolt project:

bolt module add epflsti-epfl_sso
Learn more about using this module with an existing project

Manually install this module globally with Puppet module tool:

puppet module install epflsti-epfl_sso --version 0.4.8

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

Documentation

epflsti/epfl_sso — version 0.4.8 Sep 22nd 2017

puppet.epfl_sso

UNIX single sign-on using EPFL's LDAP and Kerberos servers

Apply one-shot

Install Puppet standalone then, as root:

  1. puppet module install epflsti-epfl_sso # Install the module
  2. puppet apply -e "class { 'quirks': } class { 'quirks::pluginsync': }" # Repeat if prompted to
  3. Then, apply the epfl_sso class: puppet apply -e "class { 'epfl_sso': allowed_users_and_groups => 'user1 user2 (group1) (group2)', join_domain => 'OU=IEL-GE-Servers,OU=IEL-GE,OU=IEL,OU=STI', auth_source => 'AD', directory_source => 'AD' }"
  4. And if you want NFS connectivity too: puppet apply -e "class { 'epfl_sso::nfs': }"

Note: user1 & user2 are GASPAR usernames (or local account) and group1 and group2 are EPFL groups which are visible in ldap.epfl.ch, in example:
puppet apply -e "class { 'epfl_sso': allowed_users_and_groups => 'admin nborboen (stiitlinux)' }"
where admin is a local account, nborboen a GASPAR username and stiitlinux a EPFL group.

Applying the latest version

(in case the one on puppet lab is now up-to-date; please try the one-shot method first !)

The git clone method

  1. Be sure to remove previous version: puppet module uninstall epflsti-epfl_sso (add --ignore-changes if needed)
  2. Go in the puppet folder: cd /etc/puppet/module
  3. Remove epfl_sso (but it should have been done from step 1)
  4. Clone the repo here: git clone https://github.com/epfl-sti/puppet.epfl_sso.git /etc/puppet/module/epfl_sso
  5. Apply one-shot step 3.

The tar.gz method

  1. Be sure to remove previous version: puppet module uninstall epflsti-epfl_sso (add --ignore-changes if needed)
  2. Clone the repo: git clone https://github.com/epfl-sti/puppet.epfl_sso.git
  3. tar the repo: tar -czvf epfl_sso_latest.tar.gz puppet.epfl_sso
  4. Install the module: puppet module install epfl_sso_latest.tar.gz
  5. Apply one-shot step 3.