简体   繁体   中英

How to uninstall package using puppet

I have installed mysql in a client node using Puppet. Now I want to uninstall it in the client node. I tried the following configuration in site.pp:

  package { '::mysql::server':
    ensure => 'purged'
  }

This did not work. Can someone show me how to uninstall mysql (or any package for that matter)?

That syntax is wrong. ::mysql::server is either referencing a puppet class or defined type. You only need to specify the package name to the package type.

 package { 'mysql_package_name':
   ensure => absent
 }

Replacing mysql_package_name with the name of the package for the distro you are using.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM