Imran Iqbal
                                            Imran Iqbal
                                        
                                    Thanks for sharing that workaround, @bryceml. The failing `oraclelinux-7` build is now passing: * https://gitlab.com/myii/salt-image-builder/-/pipelines/166602413
This was working back in late June when I tried it: * https://github.com/myii/salt-bootstrap/actions/runs/2537833986 However, now held up by the update to Python 3.11: ```console Error: Problem: conflicting requests - nothing...
@rodriguesfas I had the same problem so I looked into the issue a bit further. --- #### Models These are available under: * https://sourceforge.net/projects/dbpedia-spotlight/files/2016-10/ So `en.tar.gz` can be found at:...
@rodriguesfas OK, Docker isn't going to work since it depends on downloading the JAR as well. https://github.com/dbpedia-spotlight/spotlight-docker/blob/master/v1.0/english/Dockerfile > ```Dockerfile > FROM openjdk:8-jre-alpine > > MAINTAINER DBpedia Spotlight Team > >...
@rodriguesfas There is a solution provided by @ShomyLiu at https://github.com/dbpedia-spotlight/dbpedia-spotlight-model/issues/16#issuecomment-407623136: > Hi, I have uploaded the spotlight 1.0 jar in : https://drive.google.com/file/d/1vFwVCzoY9R9rBPpfmgD9LlXpW6KdEc7-/view?usp=sharing > ... > In fact, you can maven...
@sandroacoelho That's good news. Unfortunately, numerous commitments at the moment -- apologies.
> Thanks @myii for your feature request! > > This might automatically be detected by allowing yamllint to run on the states stripped of any Jinja (#240). @roaldnefs Yes, that...
Note, this may not be that simple due to uses of `import as`. [kubernetes-formula/kubernetes/kubectl/config/environ/install.sls](https://github.com/saltstack-formulas/kubernetes-formula/blob/3f428d7c9c6fdf8768492ce6b1a3630e5863dda7/kubernetes/kubectl/config/environ/install.sls#L6): ```sls {%- from tplroot ~ "/map.jinja" import kubernetes as k8s with context %} ``` [prometheus-formula/prometheus/archive/install.sls](https://github.com/saltstack-formulas/prometheus-formula/blob/bb94cbc606c8d5b95c1078a54c73a1287ac1ccee/prometheus/archive/install.sls#L6): ```sls...
A similar issue is unused Jinja variables. [lighttpd-formula/lighttpd/config.sls@4fca60f](https://github.com/saltstack-formulas/lighttpd-formula/blob/4fca60f011d546058f3075a599f4103e9bfa8ab5/lighttpd/config.sls#L10) ```sls {% set file = lighttpd.get('config', ['lighttpd.conf']) %} ``` `file` is no longer being used anywhere after being set. It used to...
> ... I'm first going to try to fix #19 and #48. @roaldnefs Great, thanks for all of your hard work.