Hi Francesco,
On Mon, Apr 8, 2013 at 6:46 PM, Francesco Fragolino <[email protected]>wrote:
> Hy I m a new user in world puppet
> I have installed a packge test on a node "screen" without problem
> Now i want to try to uninstall it but without success. This is the file
> configuration
> this is my file init.pp
> package {"screen-4.0.3-16.el6":
> ensure=> "absent"
> }
>
> #package and purge its config files
> package {"screen-4.0.3-16.el6":
> ensure => "purged"
> }
>
Try it without the version, you should also only need to supply "purged",
not both absent and purged
package { 'screen':
ensure => 'purged',
}
You can see more output of the agent command by supplying --verbose or
--debug to see what it's doing.
> this is the path of my manifest /etc/puppet/modules/screen/manifests
> this is the command that I execute to remove package screen
> puppet agent --server=puppet.xxxx.xxxxI
>
> this is the answer
>
> Info: Retrieving plugin
> Info: Caching catalog for node.xx.xx.x
> Info: Applying configuration version '1365406267'
> Notice: Finished catalog run in 0.08 seconds
> Effectively screen is already installed
> Thank you in advance
> I m going mad
>
> Cheers
>
>
>
>
>
>
> --
> You received this message because you are subscribed to the Google Groups
> "Puppet Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/puppet-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>
>
>
--
You received this message because you are subscribed to the Google Groups
"Puppet Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.