Rene wrote:
> Hi
>
> Is it possible to create a link like:
> .bashrc -> .profile
>
> without absolute path and without using an exec?
>
> BR Rene
> >
>
I have definitions for my users that include a resource for bashrc. If
you were doing it this way, you could ensure that something like this
exists inside the definition:
file {
"/home/${username}/.profile":
ensure => "/home/${username}/.bashrc",
require => [ File["/home/${username}/.bashrc"], User["${username}"] ];
}
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/puppet-users?hl=en
-~----------~----~----~----~------~----~------~--~---