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.
2016-11-28 11:01:55 +01:00
|
|
|
# == Private class: root::params
|
|
|
|
#
|
|
|
|
class root::params {
|
|
|
|
|
2016-11-28 18:52:17 +01:00
|
|
|
# Preferences files
|
2016-11-28 11:01:55 +01:00
|
|
|
$profile_path = '/root/.profile'
|
|
|
|
$profile_content = 'root/preferences/profile.erb'
|
|
|
|
|
2016-11-28 14:55:23 +01:00
|
|
|
$bashrc_path = '/root/.bashrc'
|
2016-11-28 11:01:55 +01:00
|
|
|
$bashrc_content = 'root/preferences/bashrc.erb'
|
|
|
|
|
2016-11-28 18:52:17 +01:00
|
|
|
# Shell
|
|
|
|
$default_shell = '/bin/bash'
|
2016-11-28 15:04:55 +01:00
|
|
|
# For those IP, auto-launch ZSH as default shell
|
|
|
|
$ip_zsh = '127.0.0.1'
|
|
|
|
|
2016-11-28 11:01:55 +01:00
|
|
|
} # Private class: root::params
|