diff options
author | Gustavo Sverzut Barbieri <gustavo.barbieri@intel.com> | 2014-03-09 23:55:42 -0300 |
---|---|---|
committer | Gustavo Sverzut Barbieri <gustavo.barbieri@intel.com> | 2014-03-10 00:09:12 -0300 |
commit | c52da37d0b83cf2159704ccc7f0583df6fac7da6 (patch) | |
tree | b840f98de057a3f47a5e47907c418e8eb385ff3b /systemd-services | |
parent | 4be9526cc212bec3cdf7a708ee8d576c3d09e8a7 (diff) | |
download | efl-c52da37d0b83cf2159704ccc7f0583df6fac7da6.tar.gz |
link dbus and systemd services, allows systemd activation.
If the dbus service contains SystemdService entry and the dbus-daemon
is started with --systemd-activation, then requests for services on
the user session bus will be handled by systemd, creating cgroups and
being handled as native systemd services of Type=dbus.
Diffstat (limited to 'systemd-services')
-rw-r--r-- | systemd-services/.gitignore | 2 | ||||
-rw-r--r-- | systemd-services/efreet.service.in | 7 | ||||
-rw-r--r-- | systemd-services/ethumb.service.in | 7 |
3 files changed, 16 insertions, 0 deletions
diff --git a/systemd-services/.gitignore b/systemd-services/.gitignore new file mode 100644 index 0000000000..97355b6202 --- /dev/null +++ b/systemd-services/.gitignore @@ -0,0 +1,2 @@ +/efreet.service +/ethumb.service diff --git a/systemd-services/efreet.service.in b/systemd-services/efreet.service.in new file mode 100644 index 0000000000..ee1becbfde --- /dev/null +++ b/systemd-services/efreet.service.in @@ -0,0 +1,7 @@ +[Unit] +Description=Efreet Enlightenment FreeDesktop.Org Daemon + +[Service] +Type=dbus +BusName=org.enlightenment.Efreet +ExecStart=@prefix@/bin/efreetd diff --git a/systemd-services/ethumb.service.in b/systemd-services/ethumb.service.in new file mode 100644 index 0000000000..93bbff8bae --- /dev/null +++ b/systemd-services/ethumb.service.in @@ -0,0 +1,7 @@ +[Unit] +Description=Enlightenment Thumbnailer + +[Service] +Type=dbus +BusName=org.enlightenment.Ethumb +ExecStart=@prefix@/bin/ethumbd |