| Age | Commit message (Collapse) | Author |
|
|
|
so that gpg can do password prompting despite being connected by pipes to
propellor (or git).
|
|
MissingH is a heavy dependency, which pulls in parsec and a bunch of stuff.
So eliminating it makes propellor easier to install and less likely to
fail to build.
changesFileContent now uses hashable's hash. This may not be stable across
upgrades, I'm not sure -- but it's surely ok here, as the hash is not
stored.
socketFile also uses hash. I *think* this is ok, even if it's not stable.
If it's not stable, an upgrade might make propellor hash a hostname to a
different number, but with 9 digets of number in use, the chances of a
collision are small. In any case, I've opned a bug report asking for the
stability to be documented, and I think it's intended to be stable, only
the documentation is bad.
NB: I have not checked that the arch linux and freebsd packages for the new
deps, that Propellor.Bootstrap lists, are the right names or even exist.
Since propellor depends on hashable, it could be changed to use
unordered-containers, rather than containers, which would be faster and
perhaps less deps too.
This commit was sponsored by Alexander Thompson on Patreon.
|
|
encoding-related crashes in eg, Propellor.Property.File.
|
|
|
|
It's now exporting a conflicting isSymbolicLink
https://github.com/haskell/directory/issues/52
Only a few places in propellor use isSymbolicLink, but to prevent future
problems, made as much of it as possible import Utility.Directory, which
re-exports System.Directory without the conflicting symbol.
(Utility.Tmp and System.Console.Concurrent.Internal cannot import
Utility.Directory due to cycles, and don't use isSymbolicLink anyway.)
|
|
|
|
better than symlinks because this way no conflict can ever occur
and, commit from hook
|
|
Before, they could run in the background if another process was running,
and so their output wouldn't immediately be visible.
With this change, the concurrent-output layer is not used for these
interactive commands.
|
|
|
|
(cherry picked from commit dd572a741f1ca4bce8f984c350d9045d979f1813)
|
|
(cherry picked from commit dc3c55355246ec00782d636105871fe461587256)
|
|
Import Prelude after modules that cause warnings due to AMP change
|
|
(cherry picked from commit e2d86f812bd37de9cda7d4ecc0e5b84821f359c1)
|
|
|
|
|
|
|
|
|
|
|
|
Seems better to keep handle encoding issues out of that module.
|
|
privDataByteString.
|
|
|
|
Also, nice display for --add-key steps
|
|
gpg prompts when encrypting to an untrusted key, but if propellor has been
told to add a key, we implicitly trust it.
|
|
|