Dan Nicholson

Results 168 comments of Dan Nicholson

Sorry, got busy with a bunch of other stuff but I should be getting back to this today or tomorrow. I'll split it up into 2 PRs like you say....

I opened #1343 with the slimmed down initial setup as requested. I still passes the test suite, although I haven't really used it in real applications.

Sorry, I had to take off my ostree developer hat for a while. Next week I'll get back on this and flesh it out. Does that timeline work or were...

Right, there are definitely some competing interests here. * Any updater daemon may want handle this kind of cleanup themselves and then the systemd service is going to get in...

Fair points. I'll post my PR as a proof of concept, but I'll carry on handling this downstream. One thing I realized is that I can entirely emulate this now...

My POC is in #2511. Let me know what you think.

Currently the old deployment is deleted and the repo is pruned right after the new deployment is written out with `simple_write_deployment`. With staged deployments, that all happens at shut down...

What version of gpgme do you have? I don't remember what the package is called on CentOS, but maybe we need to bump that to a higher version.

I think that just changing `g_ascii_strtod` to [`g_ascii_strtoull`](https://developer.gnome.org/glib/stable/glib-String-Utility-Functions.html#g-ascii-strtoull) with a base of `0` would do the trick as that inteprets a leading `0` as octal. But then the documentation would...

It probably should call `g_variant_is_of_type` and return a friendlier error instead of blindly using it, but the problem is that you're passing some GVariant, but not the right kind. You...