summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-04-20Added a commentdesired.mta@88576fa3c90538abed47d3f0aa48d00bcc903b23
2019-04-18Added a comment: patches submittedspwhitton
2019-04-16commentJoey Hess
2019-04-16Merge branch 'master' of ssh://propellor.branchable.comJoey Hess
2019-04-16commentJoey Hess
2019-04-16Added a commentNicolas.Schodet
2019-04-16Added a comment: containerToHost?Nicolas.Schodet
2019-04-16Ssh.userKeys, Ssh.userKeyAt: Create .ssh directory when it does not yet exist.Joey Hess
* Ssh.userKeys, Ssh.userKeyAt: Create .ssh directory when it does not yet exist. * Ssh.userKeyAt: When a relative filepath is provided, it's put inside the user's .ssh directory.
2019-04-16commentJoey Hess
2019-04-14Added a commentNicolas.Schodet
2019-04-14Getting Info from containersNicolas.Schodet
2019-04-14Added a commentNicolas.Schodet
2019-04-14creating Ssh.userKeyAt should create the .ssh directoryNicolas.Schodet
2019-04-11Added a comment: Tested Hostname in a systemd containerNicolas.Schodet
2019-04-11(no commit message)desired.mta@88576fa3c90538abed47d3f0aa48d00bcc903b23
2019-04-09update changelogJoey Hess
2019-04-09Add User.ownsWithPrimaryGroupSean Whitton
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
2019-04-08change from inChroot to granular container capabilities infoJoey Hess
* Removed inChroot, instead use hasContainerCapability FilesystemContained. (API change) * Hostname: Properties that used to not do anything in a systemd or docker container will now change the container's hostname, since it's namespaced. More container capabilities can easily be added later, to fine grain control what properties will run in different kinds of containers. This changed CmdLine's Read instance, which should be ok, because propellor inside the container is always updated at the same time as propellor outside, so when it chains into the chroot, it will know to expect the capability list. Docker was not setting InChroot before, but now sets both container capabilities, so chroot setting will also work in it. Note that, things that used to check inChroot before would not work in docker, but things that check FilesystemContained now will. It may be that some of those properties don't really work properly in docker. And, Grub.installed used to run grub-mkconfig in a docker container before, I doubt that made sense (was it even safe?); it doesn't do it now. This commit was sponsored by Trenton Cronholm on Patreon.
2019-04-08Fix bug in File.containsShellSettingJoey Hess
It replaced whole shell conffile content with the setting if the file did not previously contain a line setting the key to some value. InsertSection is passed the whole content of the file, which does not contain the section yet (here the section is a single line). Probably this was not noticed because it's common for a shell config file to contain default values, so the buggy InsertSection rarely gets used. This commit was sponsored by Ethan Aubin.
2019-04-07Hostname is not set in a systemd containerNicolas.Schodet
2019-04-07Added a commentNicolas.Schodet
2019-04-05add news item for propellor 5.7.0Joey Hess
2019-04-05releasing package propellor version 5.7.0Joey Hess
2019-04-05clean up after mergeJoey Hess
2019-04-03propellor spinJoey Hess
2019-04-03propellor spinJoey Hess
2019-04-03remove old cron jobJoey Hess
2019-04-03Merge branch 'master' into joeyconfigJoey Hess
2019-04-03changelog for spwhitton's cron patch setJoey Hess
2019-04-03remove unidiomatic parens before `func`Joey Hess
2019-04-03remove space before tab indentationJoey Hess
2019-04-03make Cron.runPropellor revertableSean Whitton
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
2019-04-03add Cron.jobDroppedSean Whitton
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
2019-04-03mention Localdir.removed propertyJoey Hess
2019-04-03setting up joeyconfig after mergeJoey Hess
2019-04-03Merge branch 'joeyconfig'Joey Hess
2019-04-03changelog for spwhitton's patch setJoey Hess
2019-04-03Sbuild.built applies Localdir.removed to schrootsSean Whitton
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
2019-04-03add Localdir.removedSean Whitton
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
2019-04-03add Mount.partialBindMountsOf functionSean Whitton
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
2019-04-03rename Propellor.Property.{PropellorRepo -> Localdir}Sean Whitton
This is to accommodate a new property in that module which is about /usr/local/propellor, but not only about the git repo there. Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
2019-04-01Added a comment: Patch series submittedspwhitton
2019-04-01commentJoey Hess
2019-04-01Added Utility.FileMode to the modules exported by Propellor.UtilitiesJoey Hess
Since File.mode uses FileMode, it seems it ought to be exported by propellor somewhere. I don't want to make propellor Property modules themselves export core data types though, so this is a compromise of dubious utility.
2019-04-01Sbuild.built no longer includes Apt.stdSourcesList by default, in order to ↵Joey Hess
support non-Debian OS's. (API change) To upgrade: Simply add Sbuild.osDebianStandard to all Sbuild.built calls which have osDebian. Thanks, Sean Whitton
2019-04-01sbuild: break Apt.stdSourcesList out of Sbuilt.builtSean Whitton
Apt.stdSourcesList supports only Debian, so having it inside Sbuilt.built was blocking using Sbuild.built with non-Debian schroots. Note that we cannot break out the installation of eatmydata and ccache, because Sbuild.built assumes that those are available in the schroot config files that it writes out. This is a minimal fix. If it becomes clear that there are properties which would be wanted in every Buntish schroot, say, we might replace Sbuild.osDebianStandard with an Sbuild.standard property which uses pickOS to install the right set of properties. Reported-by: David Bremner <david@tethera.net> Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
2019-03-30How can File.mode be used in config.hs?Nicolas.Schodet
2019-03-29Added a comment: patch submittedspwhitton
2019-03-29report bugspwhitton
2019-03-29fix .dir-locals.el to avoid apparent memory leak bug with Emacs 26spwhitton