anarchist Ivanov

Results 41 comments of anarchist Ivanov

It is already available in [Fedora](https://packages.fedoraproject.org/pkgs/hadolint/hadolint/) and [openSUSE Tumbleweed](https://software.opensuse.org/package/hadolint) repositories. @pereorga I think you could ask Debian maintainers about adding the package.

@atombrella I see that `microdnf` support is already implemented: https://github.com/hadolint/hadolint/blob/b264eaa92ca2fe7df22a480a67b1c16e6e3e5f7c/src/Hadolint/Rule/DL3038.hs#L25 https://github.com/hadolint/hadolint/blob/b264eaa92ca2fe7df22a480a67b1c16e6e3e5f7c/src/Hadolint/Rule/DL3040.hs#L31 https://github.com/hadolint/hadolint/blob/b264eaa92ca2fe7df22a480a67b1c16e6e3e5f7c/src/Hadolint/Rule/DL3041.hs#L27 But support for `dnf5` command is not yet implemented. This command, which replaces `microdnf`, is used in Fedora...

I can't reproduce this bug with `microdnf` command (it's already supported as I see in the code), but I noticed strange behavior of this rule when I install packages multiple...

Hello! In fact, `ansible.builtin.password_hash` module still supports any type supported by [`passlib`](https://passlib.readthedocs.io/en/stable/). I currently use it to create [PBKDF2-SHA512 salted hashes](https://passlib.readthedocs.io/en/stable/lib/passlib.hash.pbkdf2_digest.html#passlib.hash.pbkdf2_sha512). I need the ability to use salt to enforce...

I get the following error on CentOS Stream 9 when I install rspamd package: ``` warning: Signature not supported. Hash algorithm SHA1 not available. error: failed to parse public key...

@istiak101 According to RedHat Bugzilla there have been at least two attempts to build rspamd package for inclusion in the Fedora repositories, and later in EPEL: * https://bugzilla.redhat.com/show_bug.cgi?id=1023690 * https://bugzilla.redhat.com/show_bug.cgi?id=1494914...

> If I remember correctly from my build experience Ragel is a blocker for this I see that the Ragel package is already in the Fedora and EPEL repositories. Maybe...

Personally, I have disabled GPG checks for the Rspamd repository because I need to create a container image and I can't install additional python packages with dependencies to enable SHA1...

I have found that the desired behavior of periodic schedulers is provided by the `createAbsoluteSourceStamps` option in combination with `ChangeFilter` parameters: ```python schedulers.Nightly( name='rebuild', change_filter=util.ChangeFilter( branch='main', project='project'), createAbsoluteSourceStamps=True, onlyIfChanged=False, minute=range(0,...