Raphael Pigulla
Raphael Pigulla
Apparently an unresolved merge conflict was accidentally commited. See here: https://github.com/debops/debops/blob/v2.3.6/ansible/roles/ipxe/tasks/debian_netboot.yml#L84 ```yml - name: Download Debian firmware tarballs get_url: url: '{{ item.firmware_url | d(ipxe__debian_netboot_firmware_mirror + "/" + item.release + "/"...
_Note_: I vaguely remember this being discussed before, but I couldn't find the corresponding issue. Forgive me if a decision about this has already been made. I'm currently documenting code...
I'm trying to use head to only get the first n bytes of output. See the following (contrived) example: ``` javascript var procstream = require('procstreams'); procstream('cat', ['/dev/random']) .pipe('head', ['--bytes=100']) .data(function...
The [print_hash](https://github.com/debops/ansible-samba/blob/master/templates/etc/samba/smb.conf.j2#L2) macro replaces spaces with underscores. This breaks configuration of Samba's [vfs_full_audit](https://www.samba.org/samba/docs/man/manpages-3/vfs_full_audit.8.html) module which has options like `full_audit:prefix`. What is the suggested workaround?
### Description In our code we put emphasis on the Principle of Least Privilege. Consequently, we have to `GRANT USAGE, SELECT ON SEQUENCE` in various places. ### Suggested solution Not...
**Describe the bug** Setting a config property to `null` via environment variables is not possible, the value is simply being ignored. I've tracked the issue down to [this line](https://github.com/node-config/node-config/blob/8681019099f43eb4762d5cecf2f42ab9e99f3f5e/lib/config.js#L1061) in...