I have this config: # BL00070 - Disable NFS service {["nfs","nfslock","netfs","portmap"]: ensure => stopped, enable => false, } user {"rpc": ensure => absent, provider => "useradd" } user {"rpcuser": ensure => absent, provider => "useradd" } file {"/etc/imports": ensure => absent } file {"/etc/auto.home": ensure => absent } file {"/etc/auto.master": ensure => absent } file {"/etc/auto.misc": ensure => absent } file {"/etc/init.d/autofs": ensure => absent } running on CentOS5 9which uses "useradd" but I see this in the logs: Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/baseclass/ baseline/User[rpcuser]) Failed to retrieve current state of resource: Provider useradd is not functional on this platform Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/baseclass/ baseline/User[rpc]) Failed to retrieve current state of resource: Provider useradd is not functional on this platform What am I missing? --~--~---------~--~----~------------~-------~--~----~ 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-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
Anyone? I made /usr/sbin is in path for all calls.. and that''s where useradd, userdel are.. so what gives? [jleggett@lxp6d15m3 puppet]$ ls /usr/sbin/user[tab] useradd userdel userhelper usermod usernetctl On Jun 6, 12:46 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote:> I have this config: > > # BL00070 - Disable NFS > service {["nfs","nfslock","netfs","portmap"]: > ensure => stopped, > enable => false, > } > user {"rpc": ensure => absent,provider=> "useradd" } > user {"rpcuser": ensure => absent,provider=> "useradd" } > file {"/etc/imports": ensure => absent } > file {"/etc/auto.home": ensure => absent } > file {"/etc/auto.master": ensure => absent } > file {"/etc/auto.misc": ensure => absent } > file {"/etc/init.d/autofs": ensure => absent } > > running on CentOS5 9which uses "useradd" but I see this in the logs: > > Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/baseclass/ > baseline/User[rpcuser]) Failed to retrieve current state of resource:Provideruseraddisnotfunctionalon thisplatform > Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/baseclass/ > baseline/User[rpc]) Failed to retrieve current state of resource:Provideruseraddisnotfunctionalon thisplatform > > What am I missing?--~--~---------~--~----~------------~-------~--~----~ 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-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
Run ''puppetdoc -r providers'' (you might have to download puppetdoc from the source repo). It will tell you what that provider is missing. It''s easiest to read if you run it through ''rst2html'' (easily downloadable from the ''net). On Jun 9, 2008, at 9:32 AM, Jeff Leggett wrote:> > Anyone? I made /usr/sbin is in path for all calls.. and that''s where > useradd, userdel are.. so what gives? > > [jleggett@lxp6d15m3 puppet]$ ls /usr/sbin/user[tab] > useradd userdel userhelper usermod usernetctl > > > On Jun 6, 12:46 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote: >> I have this config: >> >> # BL00070 - Disable NFS >> service {["nfs","nfslock","netfs","portmap"]: >> ensure => stopped, >> enable => false, >> } >> user {"rpc": ensure => absent,provider=> "useradd" } >> user {"rpcuser": ensure => absent,provider=> "useradd" } >> file {"/etc/imports": ensure => absent } >> file {"/etc/auto.home": ensure => absent } >> file {"/etc/auto.master": ensure => absent } >> file {"/etc/auto.misc": ensure => absent } >> file {"/etc/init.d/autofs": ensure => absent } >> >> running on CentOS5 9which uses "useradd" but I see this in the logs: >> >> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/baseclass/ >> baseline/User[rpcuser]) Failed to retrieve current state of >> resource:Provideruseraddisnotfunctionalon thisplatform >> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/baseclass/ >> baseline/User[rpc]) Failed to retrieve current state of >> resource:Provideruseraddisnotfunctionalon thisplatform >> >> What am I missing? > >-- One of the keys to happiness is a bad memory. -- Rita Mae Brown --------------------------------------------------------------------- Luke Kanies | http://reductivelabs.com | http://madstop.com --~--~---------~--~----~------------~-------~--~----~ 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-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
it seems to say the same thing: user_ ----- .. _user: http://reductivelabs.com/trac/puppet/wiki/TypeReference#user :Default provider: none ================ ========= ================= ==============================Provider Suitable? allows_duplicates manages_homedir manages_passwords ================ ========= ================= ==============================directoryservice [31]_ **X** netinfo [32]_ **X** pw [33]_ **X** **X** useradd [34]_ **X** **X** ================ ========= ================= ============================== .. [31] - Missing files /usr/bin/dscl - Fact operatingsystem (currently "CentOS") not in list darwin .. [32] - Missing files nireport, niutil .. [33] - Missing files pw .. [34] - Missing files useradd, usermod, userdel [jleggett@lxp6d4m3 manifests]$ On Jun 9, 10:36 am, Luke Kanies <l...@madstop.com> wrote:> Run ''puppetdoc -r providers'' (you might have to download puppetdoc > from the source repo). It will tell you what that provider is > missing. It''s easiest to read if you run it through > ''rst2html'' (easily downloadable from the ''net). > > On Jun 9, 2008, at 9:32 AM, Jeff Leggett wrote: > > > > > > > Anyone? I made /usr/sbin is in path for all calls.. and that''s where > > useradd, userdel are.. so what gives? > > > [jleggett@lxp6d15m3 puppet]$ ls /usr/sbin/user[tab] > > useradd userdel userhelper usermod usernetctl > > > On Jun 6, 12:46 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote: > >> I have this config: > > >> # BL00070 - Disable NFS > >> service {["nfs","nfslock","netfs","portmap"]: > >> ensure => stopped, > >> enable => false, > >> } > >> user {"rpc": ensure => absent,provider=> "useradd" } > >> user {"rpcuser": ensure => absent,provider=> "useradd" } > >> file {"/etc/imports": ensure => absent } > >> file {"/etc/auto.home": ensure => absent } > >> file {"/etc/auto.master": ensure => absent } > >> file {"/etc/auto.misc": ensure => absent } > >> file {"/etc/init.d/autofs": ensure => absent } > > >> running on CentOS5 9which uses "useradd" but I see this in the logs: > > >> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/baseclass/ > >> baseline/User[rpcuser]) Failed to retrieve current state of > >> resource:Provideruseraddisnotfunctionalon thisplatform > >> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/baseclass/ > >> baseline/User[rpc]) Failed to retrieve current state of > >> resource:Provideruseraddisnotfunctionalon thisplatform > > >> What am I missing? > > -- > One of the keys to happiness is a bad memory. -- Rita Mae Brown > --------------------------------------------------------------------- > Luke Kanies |http://reductivelabs.com|http://madstop.com--~--~---------~--~----~------------~-------~--~----~ 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-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
If it can''t find the binaries, then set the ''path'' setting in your puppet.conf. It''s definitely telling the truth, so it''s a question of figuring out why it can''t see the binaries. On Jun 9, 2008, at 11:23 AM, Jeff Leggett wrote:> > it seems to say the same thing: > > user_ > ----- > > .. _user: http://reductivelabs.com/trac/puppet/wiki/TypeReference#user > > :Default provider: none > > > ================ ========= ================= ==============> ================> Provider Suitable? allows_duplicates manages_homedir > manages_passwords > ================ ========= ================= ==============> ================> directoryservice [31]_ **X** > netinfo [32]_ **X** > pw [33]_ **X** **X** > useradd [34]_ **X** **X** > ================ ========= ================= ==============> ================> > .. [31] > - Missing files /usr/bin/dscl > - Fact operatingsystem (currently "CentOS") not in list darwin > > .. [32] > - Missing files nireport, niutil > > .. [33] > - Missing files pw > > .. [34] > - Missing files useradd, usermod, userdel > > > [jleggett@lxp6d4m3 manifests]$ > > > On Jun 9, 10:36 am, Luke Kanies <l...@madstop.com> wrote: >> Run ''puppetdoc -r providers'' (you might have to download puppetdoc >> from the source repo). It will tell you what that provider is >> missing. It''s easiest to read if you run it through >> ''rst2html'' (easily downloadable from the ''net). >> >> On Jun 9, 2008, at 9:32 AM, Jeff Leggett wrote: >> >> >> >> >> >>> Anyone? I made /usr/sbin is in path for all calls.. and that''s >>> where >>> useradd, userdel are.. so what gives? >> >>> [jleggett@lxp6d15m3 puppet]$ ls /usr/sbin/user[tab] >>> useradd userdel userhelper usermod usernetctl >> >>> On Jun 6, 12:46 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote: >>>> I have this config: >> >>>> # BL00070 - Disable NFS >>>> service {["nfs","nfslock","netfs","portmap"]: >>>> ensure => stopped, >>>> enable => false, >>>> } >>>> user {"rpc": ensure => absent,provider=> "useradd" } >>>> user {"rpcuser": ensure => absent,provider=> "useradd" } >>>> file {"/etc/imports": ensure => absent } >>>> file {"/etc/auto.home": ensure => absent } >>>> file {"/etc/auto.master": ensure => absent } >>>> file {"/etc/auto.misc": ensure => absent } >>>> file {"/etc/init.d/autofs": ensure => absent } >> >>>> running on CentOS5 9which uses "useradd" but I see this in the >>>> logs: >> >>>> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/ >>>> baseclass/ >>>> baseline/User[rpcuser]) Failed to retrieve current state of >>>> resource:Provideruseraddisnotfunctionalon thisplatform >>>> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/ >>>> baseclass/ >>>> baseline/User[rpc]) Failed to retrieve current state of >>>> resource:Provideruseraddisnotfunctionalon thisplatform >> >>>> What am I missing? >> >> -- >> One of the keys to happiness is a bad memory. -- Rita Mae Brown >> --------------------------------------------------------------------- >> Luke Kanies |http://reductivelabs.com|http://madstop.com > >-- Normal is getting dressed in clothes that you buy for work and driving through traffic in a car that you are still paying for - in order to get to the job you need to pay for the clothes and the car, and the house you leave vacant all day so you can afford to live in it. -- Ellen DeGeneres --------------------------------------------------------------------- Luke Kanies | http://reductivelabs.com | http://madstop.com --~--~---------~--~----~------------~-------~--~----~ 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-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
Like so right?: Exec { path => "/usr/bin:/usr/sbin:/bin:/sbin" } That''s set in my site.pp. So I added the path variable to puppet.conf: [main] vardir =/opt/etrade/p6/puppet logdir = /opt/etrade/p6/puppet/log ssldir = /opt/etrade/p6/puppet/ssl confdir = /opt/etrade/p6/puppet [puppetd] server = lxp6d4m3.etrade.com libdir = $vardir/lib path = "$PATH:/usr/bin:/usr/sbin:/sbin:/bin" [puppetmasterd] path = "$PATH:/usr/bin:/usr/sbin:/sbin:/bin" pluginsync = true pluginsource = puppet://lxp6d4m3.etrade.com/plugins libdir = $vardir/lib daemonize = true rundir = $vardir/run syslogfacility = daemon name = puppetmasterd Still getting error: err: //Node[default]/baseclass/baseline/User[rpcuser]: Failed to retrieve current state of resource: Provider useradd is not functional on this platform Sorry, I just ain''t seeing it today :( On Jun 9, 1:03 pm, Luke Kanies <l...@madstop.com> wrote:> If it can''t find the binaries, then set the ''path'' setting in your > puppet.conf. It''s definitely telling the truth, so it''s a question of > figuring out why it can''t see the binaries. > > On Jun 9, 2008, at 11:23 AM, Jeff Leggett wrote: > > > > > > > it seems to say the same thing: > > > user_ > > ----- > > > .. _user:http://reductivelabs.com/trac/puppet/wiki/TypeReference#user > > > :Default provider: none > > > ================ ========= ================= ==============> > ================> > Provider Suitable? allows_duplicates manages_homedir > > manages_passwords > > ================ ========= ================= ==============> > ================> > directoryservice [31]_ **X** > > netinfo [32]_ **X** > > pw [33]_ **X** **X** > > useradd [34]_ **X** **X** > > ================ ========= ================= ==============> > ================> > > .. [31] > > - Missing files /usr/bin/dscl > > - Fact operatingsystem (currently "CentOS") not in list darwin > > > .. [32] > > - Missing files nireport, niutil > > > .. [33] > > - Missing files pw > > > .. [34] > > - Missing files useradd, usermod, userdel > > > [jleggett@lxp6d4m3 manifests]$ > > > On Jun 9, 10:36 am, Luke Kanies <l...@madstop.com> wrote: > >> Run ''puppetdoc -r providers'' (you might have to download puppetdoc > >> from the source repo). It will tell you what that provider is > >> missing. It''s easiest to read if you run it through > >> ''rst2html'' (easily downloadable from the ''net). > > >> On Jun 9, 2008, at 9:32 AM, Jeff Leggett wrote: > > >>> Anyone? I made /usr/sbin is in path for all calls.. and that''s > >>> where > >>> useradd, userdel are.. so what gives? > > >>> [jleggett@lxp6d15m3 puppet]$ ls /usr/sbin/user[tab] > >>> useradd userdel userhelper usermod usernetctl > > >>> On Jun 6, 12:46 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote: > >>>> I have this config: > > >>>> # BL00070 - Disable NFS > >>>> service {["nfs","nfslock","netfs","portmap"]: > >>>> ensure => stopped, > >>>> enable => false, > >>>> } > >>>> user {"rpc": ensure => absent,provider=> "useradd" } > >>>> user {"rpcuser": ensure => absent,provider=> "useradd" } > >>>> file {"/etc/imports": ensure => absent } > >>>> file {"/etc/auto.home": ensure => absent } > >>>> file {"/etc/auto.master": ensure => absent } > >>>> file {"/etc/auto.misc": ensure => absent } > >>>> file {"/etc/init.d/autofs": ensure => absent } > > >>>> running on CentOS5 9which uses "useradd" but I see this in the > >>>> logs: > > >>>> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/ > >>>> baseclass/ > >>>> baseline/User[rpcuser]) Failed to retrieve current state of > >>>> resource:Provideruseraddisnotfunctionalon thisplatform > >>>> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/ > >>>> baseclass/ > >>>> baseline/User[rpc]) Failed to retrieve current state of > >>>> resource:Provideruseraddisnotfunctionalon thisplatform > > >>>> What am I missing? > > >> -- > >> One of the keys to happiness is a bad memory. -- Rita Mae Brown > >> --------------------------------------------------------------------- > >> Luke Kanies |http://reductivelabs.com|http://madstop.com > > -- > Normal is getting dressed in clothes that you buy for work and driving > through traffic in a car that you are still paying for - in order to > get to the job you need to pay for the clothes and the car, and the > house you leave vacant all day so you can afford to live in it. > -- Ellen DeGeneres > --------------------------------------------------------------------- > Luke Kanies |http://reductivelabs.com|http://madstop.com--~--~---------~--~----~------------~-------~--~----~ 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-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
So that doesn''t work - can someone show me an example path = in their puppet.conf? On Jun 9, 3:44 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote:> Like so right?: > > Exec { path => "/usr/bin:/usr/sbin:/bin:/sbin" } > > That''s set in my site.pp. > > So I added the path variable to puppet.conf: > > [main] > vardir =/opt/etrade/p6/puppet > logdir = /opt/etrade/p6/puppet/log > ssldir = /opt/etrade/p6/puppet/ssl > confdir = /opt/etrade/p6/puppet > > [puppetd] > server = lxp6d4m3.etrade.com > libdir = $vardir/lib > path = "$PATH:/usr/bin:/usr/sbin:/sbin:/bin" > > [puppetmasterd] > path = "$PATH:/usr/bin:/usr/sbin:/sbin:/bin" > pluginsync = true > pluginsource = puppet://lxp6d4m3.etrade.com/plugins > libdir = $vardir/lib > daemonize = true > rundir = $vardir/run > syslogfacility = daemon > name = puppetmasterd > > Still getting error: > > err: //Node[default]/baseclass/baseline/User[rpcuser]: Failed to > retrieve current state of resource: Provider useradd is not functional > on this platform > > Sorry, I just ain''t seeing it today :( > > On Jun 9, 1:03 pm, Luke Kanies <l...@madstop.com> wrote: > > > If it can''t find the binaries, then set the ''path'' setting in your > > puppet.conf. It''s definitely telling the truth, so it''s a question of > > figuring out why it can''t see the binaries. > > > On Jun 9, 2008, at 11:23 AM, Jeff Leggett wrote: > > > > it seems to say the same thing: > > > > user_ > > > ----- > > > > .. _user:http://reductivelabs.com/trac/puppet/wiki/TypeReference#user > > > > :Default provider: none > > > > ================ ========= ================= ==============> > > ================> > > Provider Suitable? allows_duplicates manages_homedir > > > manages_passwords > > > ================ ========= ================= ==============> > > ================> > > directoryservice [31]_ **X** > > > netinfo [32]_ **X** > > > pw [33]_ **X** **X** > > > useradd [34]_ **X** **X** > > > ================ ========= ================= ==============> > > ================> > > > .. [31] > > > - Missing files /usr/bin/dscl > > > - Fact operatingsystem (currently "CentOS") not in list darwin > > > > .. [32] > > > - Missing files nireport, niutil > > > > .. [33] > > > - Missing files pw > > > > .. [34] > > > - Missing files useradd, usermod, userdel > > > > [jleggett@lxp6d4m3 manifests]$ > > > > On Jun 9, 10:36 am, Luke Kanies <l...@madstop.com> wrote: > > >> Run ''puppetdoc -r providers'' (you might have to download puppetdoc > > >> from the source repo). It will tell you what that provider is > > >> missing. It''s easiest to read if you run it through > > >> ''rst2html'' (easily downloadable from the ''net). > > > >> On Jun 9, 2008, at 9:32 AM, Jeff Leggett wrote: > > > >>> Anyone? I made /usr/sbin is in path for all calls.. and that''s > > >>> where > > >>> useradd, userdel are.. so what gives? > > > >>> [jleggett@lxp6d15m3 puppet]$ ls /usr/sbin/user[tab] > > >>> useradd userdel userhelper usermod usernetctl > > > >>> On Jun 6, 12:46 pm, Jeff Leggett <jeffrey.legg...@etrade.com> wrote: > > >>>> I have this config: > > > >>>> # BL00070 - Disable NFS > > >>>> service {["nfs","nfslock","netfs","portmap"]: > > >>>> ensure => stopped, > > >>>> enable => false, > > >>>> } > > >>>> user {"rpc": ensure => absent,provider=> "useradd" } > > >>>> user {"rpcuser": ensure => absent,provider=> "useradd" } > > >>>> file {"/etc/imports": ensure => absent } > > >>>> file {"/etc/auto.home": ensure => absent } > > >>>> file {"/etc/auto.master": ensure => absent } > > >>>> file {"/etc/auto.misc": ensure => absent } > > >>>> file {"/etc/init.d/autofs": ensure => absent } > > > >>>> running on CentOS5 9which uses "useradd" but I see this in the > > >>>> logs: > > > >>>> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/ > > >>>> baseclass/ > > >>>> baseline/User[rpcuser]) Failed to retrieve current state of > > >>>> resource:Provideruseraddisnotfunctionalon thisplatform > > >>>> Jun 6 12:22:12 lxp6d4m3 puppetd[25216]: (//Node[default]/ > > >>>> baseclass/ > > >>>> baseline/User[rpc]) Failed to retrieve current state of > > >>>> resource:Provideruseraddisnotfunctionalon thisplatform > > > >>>> What am I missing? > > > >> -- > > >> One of the keys to happiness is a bad memory. -- Rita Mae Brown > > >> --------------------------------------------------------------------- > > >> Luke Kanies |http://reductivelabs.com|http://madstop.com > > > -- > > Normal is getting dressed in clothes that you buy for work and driving > > through traffic in a car that you are still paying for - in order to > > get to the job you need to pay for the clothes and the car, and the > > house you leave vacant all day so you can afford to live in it. > > -- Ellen DeGeneres > > --------------------------------------------------------------------- > > Luke Kanies |http://reductivelabs.com|http://madstop.com--~--~---------~--~----~------------~-------~--~----~ 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-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
On Jun 9, 2008, at 2:44 PM, Jeff Leggett wrote:> Like so right?: > > Exec { path => "/usr/bin:/usr/sbin:/bin:/sbin" }This only affects ''exec'' resources, not packages or whatever.> > That''s set in my site.pp. > > So I added the path variable to puppet.conf: > > [main] > vardir =/opt/etrade/p6/puppet > logdir = /opt/etrade/p6/puppet/log > ssldir = /opt/etrade/p6/puppet/ssl > confdir = /opt/etrade/p6/puppet > > [puppetd] > server = lxp6d4m3.etrade.com > libdir = $vardir/lib > path = "$PATH:/usr/bin:/usr/sbin:/sbin:/bin" > > [puppetmasterd] > path = "$PATH:/usr/bin:/usr/sbin:/sbin:/bin"Why not just set ''path'' in main? And this doesn''t work because $PATH will get interpreted as being another setting, one that doesn''t exist. I assume. Set a fully-qualified path and see how that does. -- A motion to adjourn is always in order. --Robert Heinlein --------------------------------------------------------------------- Luke Kanies | http://reductivelabs.com | http://madstop.com --~--~---------~--~----~------------~-------~--~----~ 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-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---
Are you running puppetd as root? Regards, AJ --~--~---------~--~----~------------~-------~--~----~ 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-unsubscribe@googlegroups.com For more options, visit this group at http://groups.google.com/group/puppet-users?hl=en -~----------~----~----~----~------~----~------~--~---