dear all, I am stuck in a small issue with my AIX node. I need to copy the ssh key file of individual users from my server in to their home directory in AIX client.
I cannot manage the 'source' resource with path defined in fileserver.conf. filserver.conf: ---------------- [AIX] path myfiles/users/ssh/ allow *.another.mydomain.com myclass.pp: ---------------- class myclass { $fileserver= "AIX" $pub_key = "id_dsa.pub" $username = "foo" file { "${home}/${username}/.ssh/authorized_keys": source => "puppet:///$fileserver/$pub_key.${username}", ... } } When i run it on my client it gives following error; Could not describe /AIX/id_dsa.pub: Fileserver module 'AIX' not mounted. It must replace AIX with the defined path in fileserver.conf but somehow it is failed to mount that path. however, if give an absolute path then it works perfectly fine. i.e. if i use; source => "myfiles/users/ssh/$pub_key.${username}", what could be the problem here? any idea??? PS: I am using the rpm : puppet-0.24.4-22.aix5.3.noarch.rpm --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Puppet Users" group. To post to this group, send email to puppet-users@googlegroups.com To unsubscribe from this group, send email to puppet-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---