####Table of Contents
- Description
- Setup - The basics of getting started with pdsh
- Usage - Configuration options and additional functionality
- Reference - Module reference
The pdsh module will install and configure pdsh and optionally add groups.
If genders support is enabled there is a soft dependency on treydock/genders
Install and configure pdsh
include pdsh
Note Groups are only supported on Red Hat based systems.
Define some groups with members an aliases using class (or Hiera)
class { '::pdsh':
groups => {
'compute' => {
'members' => 'o0[001-824]',
'aliases' => ['all'],
}
}
}
Groups can be defined through pdsh::group
defined type
pdsh::group { 'compute':
members => 'o0[001-824]',
aliases => ['all'],
}