diff options
| author | Joey Hess <joey@kitenet.net> | 2014-11-21 17:29:47 -0400 |
|---|---|---|
| committer | Joey Hess <joey@kitenet.net> | 2014-11-21 17:29:47 -0400 |
| commit | e60b261daea356a2fcab424a276a491fdd3f956c (patch) | |
| tree | 1acb5a387f77b9749023fc5de188268a39636a02 /src/Propellor/Property/Systemd | |
| parent | 7ecb632b7ce1d97559646c3af71bb54db82c99e3 (diff) | |
| parent | 04ea987075b869ea70cf55a193af7f5604ff0561 (diff) | |
Merge branch 'joeyconfig'
Diffstat (limited to 'src/Propellor/Property/Systemd')
| -rw-r--r-- | src/Propellor/Property/Systemd/Core.hs | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/Propellor/Property/Systemd/Core.hs b/src/Propellor/Property/Systemd/Core.hs new file mode 100644 index 00000000..441717e1 --- /dev/null +++ b/src/Propellor/Property/Systemd/Core.hs @@ -0,0 +1,10 @@ +module Propellor.Property.Systemd.Core where + +import Propellor +import qualified Propellor.Property.Apt as Apt + +-- dbus is only a Recommends of systemd, but is needed for communication +-- from the systemd inside a container to the one outside, so make sure it +-- gets installed. +installed :: Property +installed = Apt.installed ["systemd", "dbus"] |
