From db2bf397b924d1d21a364f15e99402f47f097c7a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gardais=20J=C3=A9r=C3=A9my?= Date: Mon, 28 Nov 2016 14:55:23 +0100 Subject: [PATCH] Correct bashrc path --- manifests/config.pp | 6 +++--- manifests/params.pp | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) 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