You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Feb 21, 2020. It is now read-only.
Versions:
puppet server: 3.3
puppet client: 3.4
latest versions of wget and sonarqube modules
I have a strange issue when setting a custom install root via hiera (possibly directly calling the class also). The installroot is never created, resulting in failed dependencies when it attempts to create the sonar-version folder inside the installroot. As a result, I've modified the code to be as follows in the local module which appears to work.
Is this a known issue or something quirky in my puppet installation:
Hi guys,
Versions:
puppet server: 3.3
puppet client: 3.4
latest versions of wget and sonarqube modules
I have a strange issue when setting a custom install root via hiera (possibly directly calling the class also). The installroot is never created, resulting in failed dependencies when it attempts to create the sonar-version folder inside the installroot. As a result, I've modified the code to be as follows in the local module which appears to work.
Is this a known issue or something quirky in my puppet installation:
Sonar home
file { $home:
ensure => directory,
mode => '0700',
} ->
file { "${installroot}":
ensure => directory,
} ->
file { "${installroot}/sonar-${version}":
ensure => directory,
} ->
file { $installdir:
ensure => link,
target => "${installroot}/sonar-${version}",
} ->
Thanks,
The text was updated successfully, but these errors were encountered: