Petr

Results 22 comments of Petr

I had the same problem as markandrus, and managed to solve it using ``` cabal install --solver=modular --avoid-reinstalls --constraint='template-haskell == 2.7.0.0' ```

Some suggestions: 1. Could the flag be made per share, not global? In my case I want some directories to be created/permissions set and some not. 2. Add the flag...

:+1: When a directory is a mountpoint, setting permissions on it will fail. therefore such an option is needed.

The problem this is solving is reducing privileges `ddupdate` is running with when run as a system service. I run it as such on a few machines of mine. It...

FWIW I also have a [NetworkManager hook](https://man.archlinux.org/man/NetworkManager-dispatcher.8.en) in `/etc/NetworkManager/dispatcher.d/99-ddupdate` to run `ddupdate` immediately after an address change: ```sh #!/bin/sh set -e IFACE="$1" ACTION="$2" case "$ACTION" in dhcp6-change|dhcp4-change) systemctl --no-ask-password start...

Now I'm trying out a slightly different approach: - I added `RemainAfterExit=yes` to `ddupdate.service` so that it's recognized as active or inactive. - I set up the NetworkManager hook to...

Great! Let's keep it simple, just to verify checksums of tarballs as they're already provided. Later we can think of expanding it, if needed. I'll then start working on a...

After some experimenting I came to the following ideas, which can be implemented relatively independently. **Provide a checksum of a checksum file for each released version.** This is the simplest...

So my questions are: 1. Are these options (or one of them) reasonable to implement? 2. For OpenPGP is it acceptable to add this non-trivial dependency? We could also resort...