Colin Nolan
Colin Nolan
The `consul config file` step in `install.yml` sporadically makes changes to `/etc/consul.conf`, without a change in the configuration. The problem is that the order of the values in the `retry_join`...
Creating a new user to replace the default one should be idempotent (i.e. should not use `changed_when: True`): https://github.com/mikolak-net/ansible-raspi-config/blob/85cae51462822d9a5fe083f9effc6d4cfe433e5b/tasks/setup_replace_user.yml#L3-L8. I think the step to remove the default user can just...
This PR improves the testing such that the module is tested against multiple version of Conda. This should help us keep this module working with future versions of Conda, at...
If a version number has extra ".0" precision - e.g. only version 0.8 exists, yet version 0.8.0 is requested - `conda` happily ignores the extra ".0"s. However, this module still...
Addresses minor issues in `logging` module, reported in https://github.com/micropython/micropython-lib/issues/691. ## Change 1: Makes subclasses of `logging.Handler` call the superclasses' initialiser CPython: ``` >>> import logging >>> logger = logging.StreamHandler() >>>...
Currently, the only way to know if `mip.install` has failed is to interpret the final line emitted to stdout. This makes it difficult to use `mip` in scripts. To better...
Given a bgzipped VCF that contains a telomere indicated by position 0 ([as per the VCF spec](https://samtools.github.io/hts-specs/VCFv4.4.pdf)): ``` $ zcat example.vcf.gz | grep -v '#' 22 0 ID1 C G...
### Summary Using `amazon.aws.s3_object` copy mode with objects that were uploaded in multiple parts (e.g. as happens with uploads via the web UI) results in the objects being copied every...
Adds a couple more types in the `typing` module, namely: - `NewType` (https://docs.python.org/3/library/typing.html#typing.NewType) - `TypeAlias` (https://docs.python.org/3/library/typing.html#typing.TypeAlias)
There appears to be 16 different actions, yet only 6 are listed (with little details) in the README: ``` ['get_aliases', 'get_cname', 'get_host', 'get_network', 'get_next_available_ip', 'get_fixedaddress', 'reserve_next_available_ip', 'add_alias', 'add_cname', 'add_host', 'delete_alias',...