As part of my websphere installation i am facing below error
Error: Failed to apply catalog: Could not find dependent Exec[concat_/etc/puppetlabs/facter/facts.d/websphere.yaml] for File[/var/lib/puppet/concat/_etc_puppetlabs_facter_facts.d_websphere.yaml/fragments/10_WebSphere85_facts] at /etc/puppet/modules/concat/manifests/fragment.pp:132
Its actually because of "/etc/puppetlabs/facter/facts.d/websphere.yaml".
iam using open source puppet but the file is looking for directory structure of puppet enterprise "/etc/puppetlabs...
my question is what is the path for websphere.yaml in open source?
The code that is effecting is in init.pp file :
## concat is used to populate a file for facter
49 concat { '/etc/puppetlabs/facter/facts.d/websphere.yaml':
50 ensure => 'present',
51 }
52 concat::fragment { 'websphere_facts_header':
53 target => '/etc/puppetlabs/facter/facts.d/websphere.yaml',
54 order => '01',
55 content => "---\nwebsphere_base_dir: ${base_dir}\n",
56 }
↧