15 lines
348 B
Puppet
15 lines
348 B
Puppet
# == Private class: root::params
|
|
#
|
|
class root::params {
|
|
|
|
$profile_path = '/root/.profile'
|
|
$profile_content = 'root/preferences/profile.erb'
|
|
|
|
$bashrc_path = '/root/.bashrc'
|
|
$bashrc_content = 'root/preferences/bashrc.erb'
|
|
|
|
# For those IP, auto-launch ZSH as default shell
|
|
$ip_zsh = '127.0.0.1'
|
|
|
|
} # Private class: root::params
|