summaryrefslogtreecommitdiff
path: root/src/Propellor/Property/Systemd.hs
AgeCommit message (Collapse)Author
2015-06-01more systemd improvementsJoey Hess
2015-06-01add BoundJoey Hess
2015-06-01propellor spinJoey Hess
2015-06-01use --machineJoey Hess
needed by systemd 220 for machined to see the container as a machine
2015-06-01another try at unmounting /proc for systemd-nspawnJoey Hess
2015-06-01add linkJournal property so it can be reverted to disableJoey Hess
2015-06-01explicitly speciy params for systemd-nspawn ExecStartJoey Hess
It was using whatever was in /lib/systemd/system/systemd-nspawn@.service, but systemd 220 added --network-veth to that, which can break existing setups. So don't do that.
2015-06-01propellor spinJoey Hess
2015-06-01don't mount /proc when provisioning systemd-nspawn containerJoey Hess
While needed for chroot provisioning, it confuses system when systemd-nspawn runs it inside the container.
2015-06-01reorganize Port type for systemd can use itJoey Hess
2015-06-01better types for systemd port publishingJoey Hess
2015-06-01propellor spinJoey Hess
2015-06-01Added publish property for systemd-spawn containers. (Needs systemd version ↵Joey Hess
220.)
2015-05-27propellor spinJoey Hess
2015-05-27Improve enter-machine scripts for nspawn containers to unset most ↵Joey Hess
environment variables.
2015-05-27Export CommandParam, boolSystem, safeSystem and shellEscape from ↵Joey Hess
Propellor.Property.Cmd, so they are available for use in constricting your own Properties when using propellor as a library. Several imports of Utility.SafeCommand now redundant.
2015-01-24GADT properties seem to work (untested)Joey Hess
* Property has been converted to a GADT, and will be Property NoInfo or Property HasInfo. This was done to make sure that ensureProperty is only used on properties that do not have Info. Transition guide: - Change all "Property" to "Property NoInfo" or "Property WithInfo" (The compiler can tell you if you got it wrong!) - To construct a RevertableProperty, it is useful to use the new (<!>) operator - Constructing a list of properties can be problimatic, since Property NoInto and Property WithInfo are different types and cannot appear in the same list. To deal with this, "props" has been added, and can built up a list of properties of different types, using the same (&) and (!) operators that are used to build up a host's properties.
2015-01-21Added systemd configuration properties.Joey Hess
2015-01-19avoid haddock warningsJoey Hess
2015-01-19rename HostLike to PropAccumJoey Hess
This is more general; it doesn't need to contain a Host. It would, for example, be possible to make Property itself be an instance of PropAccum.
2014-12-09improve haddock formating of filenamesJoey Hess
2014-12-07simplify using makeChangeJoey Hess
2014-11-21propellor spinJoey Hess
2014-11-21allow disabling nspawn params, and default to bind mounting /etc/resolv.confJoey Hess
2014-11-21propellor spinJoey Hess
2014-11-21allow configuring systemd-nspawn parametersJoey Hess
2014-11-21propellor spinJoey Hess
2014-11-21typoJoey Hess
2014-11-21add debootstrap parametersJoey Hess
2014-11-21implement teardownJoey Hess
2014-11-21os info propigationJoey Hess
Also, lost the systemd-nspawn parameters; I'll do that some other way.
2014-11-21fix info propigationJoey Hess
Need to propigate the full container info, not the subset used in chroot deployment.
2014-11-21propellor spinJoey Hess
2014-11-21propellor spinJoey Hess
2014-11-21propellor spinJoey Hess
2014-11-21propellor spinJoey Hess
2014-11-21propellor spinJoey Hess
2014-11-21systemd container may be mostly done (untested)Joey Hess
2014-11-20incomplete systemd container supportJoey Hess