summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-01-01Network: allow several stanzas for one interfacenetwork-stanzasNicolas Schodet
2020-09-14releasing package propellor version 5.12Joey Hess
2020-09-14changelogJoey Hess
2020-09-14deal with ./Setup sdist no longer supporting output to stdoutSean Whitton
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
2020-08-27Worked around a situation where ghc uses insane amounts of memory displaying ↵Joey Hess
an error message about a property of a host having the wrong number of arguments This is suboptimal, and I hope ghc improves eventually. But it's a lot better than using all available memory. This commit was sponsored by Svenne Krap on Patreon.
2020-08-27fix formatting in commentJoey Hess
2020-08-27merged nicolas/borg-umaskJoey Hess
2020-08-27Merge remote-tracking branch 'nicolas/borg-umask' into masterJoey Hess
2020-08-27Merge branch 'master' of ssh://propellor.branchable.com into masterJoey Hess
2020-08-27use libghc-type-errors-dev when availableJoey Hess
Added libghc-type-errors-dev to debian/control recommends, and install it if available when bootstrapping propellor. At a future point, this can be converted to a dependency. This commit was sponsored by Jochen Bartl on Patreon.
2020-08-24Added a commentjsza
2020-08-23Added a commentdavid
2020-08-22Added a commentdavid
2020-08-22Added a commentdavid
2020-08-22Added a commentdavid
2020-08-22Added a commentNicolas.Schodet
2020-08-22Borg: use --umask after command for old borg versionsborg-umaskNicolas Schodet
2020-08-22Borg: add UseUmaskNicolas Schodet
2020-08-22Borg: use borg date formater instead of $(date ...)Nicolas Schodet
2020-08-21Added a commentdavid
2020-08-20commentJoey Hess
2020-08-20commentJoey Hess
2020-08-20(no commit message)david
2020-08-15Fix backticksNicolas.Schodet
2020-08-15(no commit message)Nicolas.Schodet
2020-08-15Added a comment: problems with worms.david
2020-08-14Added a commentNicolas.Schodet
2020-08-14add news item for propellor 5.11Joey Hess
2020-08-14releasing package propellor version 5.11Joey Hess
2020-08-14updateJoey Hess
2020-08-14Revert "merge from concurrent-output"Joey Hess
This reverts commit 162e1d4e82e24f0fe3e2bd3114e4366ddb1062c0. concurrent-output depends on process-1.6.0. Older versions of process have a bug that it tickles. But, propellor does not depend on this version of process.
2020-08-14remove redundant importJoey Hess
new ghc is better at spotting these
2020-08-14analysis and followup q to bremnerJoey Hess
2020-08-14bump versionJoey Hess
2020-08-14commentJoey Hess
2020-08-14Merge branch 'master' of ssh://propellor.branchable.comJoey Hess
2020-08-14Added a comment: why make clean?david
2020-08-14merged nicolas/borg-fixesJoey Hess
2020-08-14Added a comment: fix / workarounddavid
2020-08-14Merge remote-tracking branch 'nicolas/borg-fixes'Joey Hess
2020-08-14commentJoey Hess
2020-08-14Added a comment: addendumdavid
2020-08-14Added a comment: variation on the theme.david
2020-08-12(no commit message)david
2020-08-12Added a comment: Same issues now on Debian testingdavid
2020-08-10Added a comment: Branch updatedNicolas.Schodet
2020-08-10Borg: handle old borg versions and issue a warning if no archive is foundborg-fixesNicolas Schodet
The --last and --glob-archive options need borg version 1.1. Stop using these options and do the filtering in haskell. This had the side benefit of having better checkpoint filtering. Also issue a warning in case no archive is found.
2020-08-10Borg: fix restorationNicolas Schodet
When using borg extract, the result is extracted in the current directory. Also an archive name must be provided, so use the latest archive.
2020-08-10Borg.init: add the now required encryption type parameterNicolas Schodet
The encryption type is now a required parameter when creating a repository. Unless you use no encryption, you must provide the repository passphrase, for example: withPrivData (Password "backups") (Context "borg") $ \getdata -> property' "borg repo" $ \w -> getdata $ \privdata -> ensureProperty w $ Borg.init (Borg.BorgRepoUsing [Borg.UsesEnvVar ("BORG_PASSPHRASE", privDataVal privdata)] "/path/to/backups") Borg.BorgEncKeyfile
2020-08-01Added a commentNicolas.Schodet