iwasakims commented on pull request #838:
URL: https://github.com/apache/bigtop/pull/838#issuecomment-986828681
> where did you see that error?
I think you can reproduce the issue by following diff.
```
$ git diff
diff --git a/bigtop_toolchain/manifests/packages.pp
b/bigtop_toolchain/manifests/packages.pp
index 93e6c0a..fe0a3ec 100644
--- a/bigtop_toolchain/manifests/packages.pp
+++ b/bigtop_toolchain/manifests/packages.pp
@@ -250,8 +250,14 @@ class bigtop_toolchain::packages {
ensure => latest
}
}
- }
+ if $operatingsystemmajrelease == 7 {
+ package { ca-certificates:
+ ensure => latest
+ }
+ Package<||> -> Exec<||>
+ }
+ }
# BIGTOP-3364: Failed to install setuptools by pip/pip2
# on Ubuntu-16.04/18.04 and centos-7.
```
```
$ ./gradlew toolchain
...
Debug: /Stage[main]/Bigtop_toolchain::User/File[/var/lib/jenkins/.ssh]:
Autorequiring Group[jenkins]
Info: Applying configuration version '1638800828'
Error: Could not apply complete catalog: Found 1 dependency cycle:
(Exec[Setuptools Installation] => Class[Bigtop_toolchain::Packages] =>
Class[Bigtop_toolchain::Renv] => Package[R] => Exec[Setuptools Installation])
Try the '--graph' option and opening the resulting '.dot' file in
OmniGraffle or GraphViz
...
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]