znerol
znerol
> You could script the preseeding step as SQL, avoiding any changes to acme-dns? I do not consider the db to be public API. Also it is not enough to...
Interesting. Looking through the project I realize that the db currently has two responsibilities: 1. Store long-living accounts/subdomains. The API allows to add new records, no way to modify/remove existing...
> fwiw I included a small binary for a similar purpose in the goacmedns library: Yes, I'm using that. Thanks a lot for sharing.
Testing the waters here. Very simple first PR: #162
Another very simple PR on the way to simple in-memory DNS txt records : #170
If you do not want to add a `rendered` callback to each of your templates, it is possible to add them in an automated fashion from within a `Meteor.startup()`. ```...
With the introduction of `Template.onRendered` in Meteor [1.0.4](https://github.com/meteor/meteor/blob/devel/History.md#v104-2015-mar-17), this can be simplified significantly: ``` $(function() { $(document).foundation(); }); Meteor.startup(function(){ var reflow = _.debounce(function() { Tracker.afterFlush(function() { $(document).foundation('reflow'); }); }, 100);...
Thank you for taking the time to file this issue. The `module=` parameter is supposed to select one section from the config file (same mechanism as in [blackbox_exporter](https://github.com/prometheus/blackbox_exporter) and [snmp_exporter](https://github.com/prometheus/snmp_exporter/)...
The relevant line is near the top: ``` ConnectionRefusedError: [Errno 111] Connection refused ``` This indicates, that the there is no proxmox api listening on the target host. Also note...
Thanks for taking the time to submit that PR. I started to collect deployment examples in the [wiki](../wiki). I guess that a `docker-compose` example might be fitting there as well....