Yury Bushmelev
Yury Bushmelev
I see it's referred as `RSyslog`, `Rsyslog` and `rsyslog` on the [official site](https://rsyslog.com). It'd be nice to use a single style of naming everywhere.
It'd be nice to run at least one lint tool to check for style issues. There are few tools available in the latest Ubuntu: - gcc with `-fanalyzer` flag -...
Klibc has changed the `reboot()` function to accept 2 args here: https://git.kernel.org/pub/scm/libs/klibc/klibc.git/commit/?id=6b621b8705ce5901dcf49607c8a3523c9e521901 Either we should add another `#ifdef` or maybe try to use the 4x args `__reboot()` syscall instead. The...
It'd be great to have `cloud-init` experimental feature supported in the QEMU provider. Though it means `disks` feature is required too (as cloud-init works this way for non-cloud VMs). This...
RELP input was eating 100% of single CPU core under my load (about 100k msg/s). It was unable to process message queue. So I switched to imptcp which able to...
## Describe the Bug When trying to mock a `run_plan()` call with BoltSpec's `expect_plan()` it seems that `_catch_error` parameter is ignored completely. ## Expected Behavior I'd expect `expect_plan()` to expect...
## Use Case It'd be nice to mock a Puppet DSL function or a Puppet v4 Ruby API function while testing a plan with BoltSpec. ## Describe the Solution You...
!feature * **Add `file::with_tmpfile()` function** Create a temporary file and execute the block with the filename created as an argument. The file is deleted after the block execution. This will...
## Use Case The existing approach with storing a file downloaded to the `$destination` directory under the `basename($source)` file name is quite limiting.. Downloading bunch of files from a host...
OpenSSH supports loading drop-ins from `/etc/ssh/ssh[d]_config.d` directory for server/client configs these days. While the module allows to manage the whole `/etc/ssh/ssh[d]_config` file, some packages may drop their configuration files to...