Will Saxon
Will Saxon
I just ran into this myself, and it was pointed out to me that we should be able to present a standard config file (.aws/credentials, .boto, etc.) to the task...
I didn't know about Redirector. I was annoyed at being _redirected_ there, but it took me longer to write this reply than it did to entirely replace LibRedirect with Redirector....
I run into this with another command line utility that uses the yubikey to get an SSH certificate. I added the following to my .bashrc, wrapping that utility: ```bash function...
I think it's an override file they ship: ``` # /usr/lib/systemd/system/chronyd.service.d/default-sources.conf [Service] # amazon-chrony-config may configure sources in /run/chrony.d before # we get here. If it doesn't, fall back to...
Updating their build tool to compile an RPM is a headache. It needs a newer version of bison than what's available in AL2023, and one required dependency (ivykis) is not...
> `ccache` is just a cache for compilation - it _really_ isn't needed by anything, it just helps if you're continuously doing thnigs like `make; make clean; make` I added...
This was available in EPEL for CentOS 7 as `golang-github-prometheus-node-exporter` https://src.fedoraproject.org/rpms/golang-github-prometheus-node-exporter https://src.fedoraproject.org/rpms/golang-github-prometheus-node-exporter/tree/epel7
Hello @danyeaw, no not on purpose. I dumped the environment and neither are set at the beginning of the build.
As an example of where this causes a problem, v26 [adds](https://docs.docker.com/engine/release-notes/26.0/#bug-fixes-and-enhancements-2) `::1/128` to the container's loopback interface automatically if IPv6 is enabled in the OS, whereas v25 requires [manual configuration](https://docs.docker.com/engine/daemon/ipv6)...
I've just started working with tqdm this evening, to report progress on a set of file downloads handled through a ThreadPoolExecutor. I have 40 threads in the pool. I'm using...