[root@petty-dramatist ~]# cat /etc/puppetlabs/code/environments/production/manifests/site.pp |
package { 'virt': |
ensure => installed |
} |
notify { 'dependent': |
require => Package['virt'] |
} |
notify { 'unrelated': } |
[root@petty-dramatist ~]# puppet agent -t |
Info: Using environment 'production' |
Info: Retrieving pluginfacts |
Info: Retrieving plugin |
Info: Caching catalog for petty-dramatist.delivery.puppetlabs.net |
Info: Applying configuration version '1664920918' |
Error: Execution of '/usr/bin/dnf -d 0 -e 1 -y install virt' returned 1: Error: Unable to find a match |
Error: /Stage[main]/Main/Package[virt]/ensure: change from 'purged' to 'present' failed: Execution of '/usr/bin/dnf -d 0 -e 1 -y install virt' returned 1: Error: Unable to find a match |
Notice: /Stage[main]/Main/Notify[dependent]: Dependency Package[virt] has failures: true |
Warning: /Stage[main]/Main/Notify[dependent]: Skipping because of failed dependencies |
Notice: unrelated |
Notice: /Stage[main]/Main/Notify[unrelated]/message: defined 'message' as 'unrelated' |
Info: Class[Main]: Unscheduling all events on Class[Main] |
Notice: Applied catalog in 4.32 seconds
|