you have to explicitly declare the removal. So, i...
# puppet
c
you have to explicitly declare the removal. So, if you did something like
Copy code
package { 'foo':
  ensure => 'installed',
}
You have to intentionally remove it:
Copy code
package { 'foo':
  ensure => 'absent',
}