jokjr

Results 13 issues of jokjr

- `EncodeOctets` fails when a `bytes` object starts with `0x` - I ran into this where my code was failing after 50.000 invocations because I was assigning random bytes to...

We have some cases where the NfsIoHack hides errors, consider this case: https://github.com/lamw/ghettoVCB/blob/master/ghettoVCB.sh#L643-L652 If the `rm` fails, we reach ```bash if [[ $? -ne 0 ]] && ``` this overrides...

- Fixes #157 for ghettoVCB-VMDKexclude.sh - Fixes #83 by implementing the change suggested in https://github.com/lamw/ghettoVCB/issues/83#issuecomment-736523823 - Fixes some integer comparisons (should not have any impact as far as I can...

I believe this should be ``` syslog-socket: "/run/systemd/journal/syslog" ``` on debian, it would be nice if the `certgrinder` client could try that on Linux, or perhaps try both the BSD...

1) It would be nice if the `certgrinder x.yy.z running, log-level is ABC` log message could include information to identify the client, like the reported SSH ip address. 2) It...

This bit me today, and should be simple enough to detect too: https://medium.com/opsops/using-block-for-handlers-in-ansible-a55f45b62a96

enhancement
good first issue

Below an example of invalid syntax; should be easy enough to add linting of this to the code that generates the "more than one module" warnings in `jinjalint.py` ``` -...

enhancement
good first issue

If there is no `abc | split()` filter (on older Ansible versions) it may make sense to suggest `(abc).split()` instead.

enhancement

``` - name: start something systemd: name: myservice started: True ``` is wrong, should be `state: started`. I've made this typo a number of times because the other directives are...

enhancement

The `copy` module takes a `path:` argument, and the `file` module takes a `dest:` argument. This probably ties into a larger issue of mandatory arguments, but for now catching typos...

enhancement