diff --git a/manifests/config.pp b/manifests/config.pp index 2c1d7fd..5821b1d 100644 --- a/manifests/config.pp +++ b/manifests/config.pp @@ -1,6 +1,6 @@ -# == Private class: root::configuration +# == Private class: root::config # -class root::configuration { +class root::config { File { owner => root, @@ -19,4 +19,4 @@ class root::configuration { content => template($root::bashrc_content), } -} # Private class: root::configuration +} # Private class: root::config diff --git a/manifests/params.pp b/manifests/params.pp index 882dbfb..813b9c1 100644 --- a/manifests/params.pp +++ b/manifests/params.pp @@ -5,7 +5,7 @@ class root::params { $profile_path = '/root/.profile' $profile_content = 'root/preferences/profile.erb' - $bashrc_path = 'root/.bashrc' + $bashrc_path = '/root/.bashrc' $bashrc_content = 'root/preferences/bashrc.erb' } # Private class: root::params