Join Slack
Powered by
you have to explicitly declare the removal. So, i...
# puppet
c
CVQuesty
06/08/2023, 6:36 PM
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', }
Open in Slack
Previous
Next