Git Product home page Git Product logo

puppet-ssh's Introduction

ssh

Manages SSH and provides functionality to install public/private keys and authorized_keys files.

# Definition: ssh::authorized_keys
#
# install an authorized key file
#
# Parameters:   
#   $path   - path to where private key should be installed, defaults to /home/$name
#   $group  - specify group permissions on private key, defaults to $name
#   $ensure - should the private key file be 'present' or 'absent', defaults to present
#   $key    - name of file storing private key, defaults to 'id_rsa'
#   $user   - used in retrieve_priv_key.erb
#   $owner  - specify owner permissions on private key, defaults to $name
#
# Actions:
#   install an authorized key file
#
# Requires:
#   must specify $user
#
# Sample Usage:
#   # setup authorized key for post-commit
#   ssh::authorized_keys { "puppetreposvn":
#       users   => [ "puppetreposvn-puppetrepo" ],
#       require => Generic::Mkuser[puppetreposvn]
#   } # ssh::authorized_keys

# Definition: ssh::public_key
#
# install a public key file
#
# Parameters:   
#   $path   - path to where public key should be installed, defaults to /home/$name/.
#             Under the $path directory '.ssh/id_rsa.pub' will be created 
#   $group  - specify group permissions on public key, defaults to $name
#   $ensure - should the public key file be 'present' or 'absent', defaults to present
#   $owner  - specify owner permissions on public key, defaults to $name
#
# Actions:
#   install a public key file
#
# Requires:
#   file matching $name must exist in modules/ssh/public_keys/
#
# Sample Usage:
#   # install public_key for user foo
#   ssh::public_key { "foo":
#       require => Generic::Mkuser[foo],
#   } # ssh::public_key

# Definition: ssh::private_key
#
# install a private ssh key
#
# Parameters:   
#   $path   - path to where private key should be installed, defaults to /home/$name
#   $group  - specify group permissions on private key, defaults to $name
#   $ensure - should the private key file be 'present' or 'absent', defaults to present
#   $key    - name of file storing private key, defaults to 'id_rsa'
#   $user   - used in retrieve_priv_key.erb
#   $owner  - specify owner permissions on private key, defaults to $name
#
# Actions:
#   install a private ssh key
#
# Requires:
#   must specify $user
#
# Sample Usage:
#    # setup private key for post-commit
#    ssh::private_key { "puppetreposvn":
#        user    => "puppetreposvn",
#        require => Generic::Mkuser[puppetreposvn]
#    } # ssh::private_key

puppet-ssh's People

Contributors

ghoneycutt avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.