Well I was using the info on this:
But I need some more elaborated, because I have several Desktops and are in use by 2 or 3 users each one, so I want to make a class for copy a shortcut in his desktops.
The computers are joined to a domain, so any user can log in any desktop, and his profile is created in every desktop.
I've tryed with this:
class applink {
file { "/home/installer/Escritorio/Workdesktop.desktop":
owner => installer,
group => root,
mode => 770,
source => "puppet://$server/files/Workdesktop.desktop"
}
This is only for one user called "installer", how can do this for several users?
Can I use $USER
for do this? Any Thoughts?
Thank You!