cellinfo
/
puppet-root
Archived
2
0
Fork 0
This repository has been archived on 2020-11-04. You can view files and clone it, but cannot push or open issues or pull requests.
puppet-root/README.md

72 lines
2.3 KiB
Markdown
Raw Normal View History

2016-11-28 18:38:26 +01:00
# root
#### Table of Contents
1. [Overview](#overview)
3. [Setup - The basics of getting started with root](#setup)
* [What root affects](#what-root-affects)
* [Beginning with root](#beginning-with-root)
4. [Usage - Configuration options and additional functionality](#usage)
* [Exec ZSH for some clients](#exec-zsh-for-some-clients)
5. [Reference - An under-the-hood peek at what the module is doing and how](#reference)
* [Classes](#classes)
* [Parameters](#parameters)
5. [Limitations - OS compatibility, etc.](#limitations)
## Overview
This "root" module simply define few preferences for the root user.
## Setup
### What root affects
* Root's configuration files (/root/.profile, /root/.bashrc,…).
### Beginning with root
To begin using root module with default parameter, declare the class with `include root`.
## Usage
### Exec ZSH for some clients
To autoload ZSH as "default" shell, you can pass a regex to the IP_ZSH argument. Then for every new connection, the .profile file will compare the $SSH_CLIENT variable environnment with this regex:
```
class { 'root':
ip_zsh => "(10.10.10.1|192.168.0.42)",
}
```
### Other default shell
Bash is the default shell use on Debian, if you prefer an advanced shell or didn't have Bash, you can define the DEFAULT_SHELL_PATH argument:
```
class { 'root':
default_shell_path => '/bin/zsh',
}
```
2016-11-28 18:38:26 +01:00
Then, every connection from 10.10.10.1 or 192.168.0.42 will automatically have ZSH as default shell.
## Reference
### Classes
* `root`: Main class, automatically load all needed privates classes.
### Parameters
* `profile_path`: Path to the .profile to load personal initialization. Defaults to '/root/.profile'.
* `profile_content`: Template file used to generate the previous configuration file. Defaults to 'root/preferences/profile.erb'.
* `bashrc_path`: Path to the Bash's rcfile. Defaults to '/root/.bashrc'.
* `bashrc_content`: Template file used to generate the previous configuration file. Default to 'root/preferences/bashrc.erb'.
* `default_shell_path`: Path to a bin file to use as default shell for root. Defaults to '/bin/bash'.
2016-11-28 18:38:26 +01:00
* `ip_zsh`: A regex to determine if a ssh client should have ZSH as default shell. Defaults to '127.0.0.1'.
## Limitations
This module was only tested on Debian 7.x and 8.x but should work quite few Debian's fork.