- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with bashrc
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This class manages additions to bashrc system-wide. This facilitates a means to run a pre-defermined list of scripts which are fed data derived from puppet for all users on the system.
- The ability to dynamically alter the colors of the user's prompt depending on hiera parameters.
- the ability to enable git integration with your tab completion
- the ability to customize the left and right sides of the prompt.
- The ability to display git branch statistics for the current branch
- The ability to feed a script a list of portnames, protocol, port number, and detail level to report on at login
- The ability to feed a script a list of repositories, and their corresponding filesystem path. it can report the branch and status of the repository found at that location
- GIT
- bzr
- svn
- hg
- Directories:
- /etc/profile.d
- Files:
templated files are displayed like this/etc/bashrc/etc/profile.d/prompt.sh- /etc/profile.d/git_completion.sh
- /etc/profile.d/git_prompt.sh
/usr/local/etc/svcstat.conf- /usr/local/bin/svcstat.py
/etc/profile.d/svcstat.sh
- Required Classes
- stdlib
include bashrc
This module is intended to be a foundation which can accept other extensions. Each piece of functionality is enabled or disabled in topscope, which inherits its' parameter values from class topscope.
Each submodule has default values in bashrc::config.
bashrc::setup is reponsible for the alterations to /etc/bashrc and the creation of /etc/profile.d
bashrc::prompt is responsible for prompt customizations like enabling or disabling and changing the colorization, enabling git branch awareness and enhancements.
profile::bashrc::enable_git_completion: true
profile::bashrc::enable_prompt_color: true
profile::bashrc::enable_prompt_mods: true
profile::bashrc::enable_svcstat: true
profile::bashrc::prompt_git_color: 'cyan'
profile::bashrc::prompt_git_enable: true
profile::bashrc::prompt_leftblock: '\u'
profile::bashrc::prompt_primary_color: 'blue'
profile::bashrc::prompt_rightblock: '\h \W'
profile::bashrc::prompt_secondary_color: 'green'
profile::bashrc::prompt_separator: '@'
profile::bashrc::svcstat_hash:
apache: {
name: 'Apache',
string: 'apache2'
}
bashrc Class
- bashrcdirabsolute path
Sets the location of the directory to place our rcscripts. Set to /etc/profile.d for most Linux distros.
- enable_git_completionboolean
Whether or not to deploy the git completion script to integrate git into tab awareness https://github.com/git/git/blob/master/contrib/completion/git-completion.bash
- enable_prompt_colorboolean
Whether or not to enable colorization of the shell prompt
- enable_prompt_modsboolean
Whether or not to put ps1 under puppet control
- enable_svcstatbool
Whether or not to enable the svcstat script. default: true
- enable_prompt_colorboolean
Whether or not to enable the colorization of the shell prompt
- prompt_git_colorstring
The color to display the git branch in. Supported options: ** red , green , yellow , blue , purple , cyan , white**
- prompt_git_enableboolean
Whether or not to display git info of the working directory in the prompt
- prompt_leftblockstring
What to set the left side of the prompt to. Reference the TLDP bash PS1 variable guide for inspiration
- prompt_primary_colorstring
What color the left portion of the prompt should be. Supported options: ** red , green , yellow , blue , purple , cyan , white**
- prompt_rightblockstring
What to set the right side of the prompt to. Reference the TLDP bash PS1 variable guide for inspiration
- prompt_secondary_colorstring
What color the right portion of the prompt should be. Supported options: ** red , green , yellow , blue , purple , cyan , white**
- prompt_separatorstring
The character(s) used to separate the left side of the prompt from the right.
default: '@'- puppetdirstring Sets where puppet is installed by default. Necessary for template switcher via an inline template
- svcstat_hashhash of hashes/undef
for each key/value pair contained within this hash, a line will be added to the /usr/local/etc/svcstat.conf file. The keys are:
- name This is the pretty name displayed for the service.
- string The string to search the process tree for to determine if the service is running.
bashrc::prompt class
bashrc::setup Class
bashrc::svcstat Class
- binpathabsolute pathdefault value:
/usr/local/bin
The path to place svcstat.py. This should not need to be changed.
- configpathabsolute path **default value:'/usr/local/etc/svcstat.conf'
The path to lay down the configfile for svcstat. This should not need to be changed.
- binpathabsolute pathdefault value:
Wolf Noble wolf@wolfspyre.com
Please fork this project, add your improvements, and submit a pull request. This way, we'll all get better tools
- Please contribute to svcstat.py here