Hi All,

I am new to Puppet and have a question on dependency cycle.

I am currently applying my resource directly using the command prompt on 
Windows 'puppet apply --noop init.pp'.

When I try to test it, I encounter a dependency cycle error.
Error: Could not apply complete catalog: Found 1 dependency cycle:
(Registry_key[delete_hklm_test_foo1_key_step_1_2] => 
Registry_key[delete_hklm_test_key_step_1_3] => 
Registry_key[delete_hklm_test_foo2_key_step_1_1] => 
Registry_key[delete_hklm_test_foo1_key_step_1_2])
Try the '--graph' option and opening the resulting '.dot' file in 
OmniGraffle or GraphViz

My init.pp is like this.

include deletion_key_only
class deletion_key_only {
    registry_key { 'delete_hklm_test_foo2_key_step_1_1':
        ensure => absent,
        purge_values => false,
        path => 'hklm\software\Test\foo2',
    }
    registry_key { 'delete_hklm_test_foo1_key_step_1_2':
        ensure => absent,
        purge_values => false,
        path => 'hklm\software\Test\foo1',
        require => Registry_Key['delete_hklm_test_foo2_key_step_1_1'],
    }
    registry_key { 'delete_hklm_test_key_step_1_3':
        ensure => absent,
        purge_values => false,
        path => 'hklm\software\Test',
        require => Registry_Key['delete_hklm_test_foo1_key_step_1_2'],
    }
}

I am not sure why I hit a dependency cycle error because I thought I have 
the dependency lay out correctly on my manifest where 
'delete_hklm_test_foo2_key_step_1_1' will go first, then 
'delete_hklm_test_foo1_key_step_1_2' and family 
'delete_hklm_test_key_step_1_3'.

Can anyone please explain why I am encountering a dependency cycle error?

Thanks!

David

-- 
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 puppet-users+unsubscr...@googlegroups.com.
To post to this group, send email to puppet-users@googlegroups.com.
Visit this group at http://groups.google.com/group/puppet-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to