summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Gebhardt <hsggebhardt@googlemail.com>2010-11-17 16:34:58 +0100
committerHenry Gebhardt <hsggebhardt@googlemail.com>2010-11-17 16:40:10 +0100
commit92acd2c772f80a107581c537e36b4f0807d6f887 (patch)
tree87a32aa02d004d9d88cb964e56f61c3f527feac0 /sys-apps/systemd-units/files/services-desktop
parentsys-apps/systemd-service-files-9999: Add gdm.service (diff)
downloadsystemd-92acd2c772f80a107581c537e36b4f0807d6f887.tar.gz
systemd-92acd2c772f80a107581c537e36b4f0807d6f887.tar.bz2
systemd-92acd2c772f80a107581c537e36b4f0807d6f887.zip
Rename sys-apps/systemd-service-files -> sys-apps/systemd-units
That is obviously the more general term.
Diffstat (limited to 'sys-apps/systemd-units/files/services-desktop')
-rw-r--r--sys-apps/systemd-units/files/services-desktop/NetworkManager.service11
-rw-r--r--sys-apps/systemd-units/files/services-desktop/avahi-daemon.service11
-rw-r--r--sys-apps/systemd-units/files/services-desktop/avahi-dnsconfd.service12
-rw-r--r--sys-apps/systemd-units/files/services-desktop/console-kit-daemon.service11
-rw-r--r--sys-apps/systemd-units/files/services-desktop/dhcpcd.service10
-rw-r--r--sys-apps/systemd-units/files/services-desktop/gdm.service13
-rw-r--r--sys-apps/systemd-units/files/services-desktop/hald.service11
-rw-r--r--sys-apps/systemd-units/files/services-desktop/iptables.service18
-rw-r--r--sys-apps/systemd-units/files/services-desktop/policykit-daemon.service11
-rw-r--r--sys-apps/systemd-units/files/services-desktop/wpa_supplicant.service10
10 files changed, 118 insertions, 0 deletions
diff --git a/sys-apps/systemd-units/files/services-desktop/NetworkManager.service b/sys-apps/systemd-units/files/services-desktop/NetworkManager.service
new file mode 100644
index 0000000..3400111
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/NetworkManager.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Network Manager
+After=syslog.target
+
+[Service]
+Type=dbus
+BusName=org.freedesktop.NetworkManager
+ExecStart=/usr/sbin/NetworkManager --no-daemon
+
+[Install]
+WantedBy=network.target
diff --git a/sys-apps/systemd-units/files/services-desktop/avahi-daemon.service b/sys-apps/systemd-units/files/services-desktop/avahi-daemon.service
new file mode 100644
index 0000000..524f575
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/avahi-daemon.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Avahi Zero Conf Daemon
+After=syslog.target
+
+[Service]
+Type=dbus
+BusName=org.freedesktop.Avahi
+ExecStart=/usr/sbin/avahi-daemon -s
+
+[Install]
+WantedBy=graphical.target
diff --git a/sys-apps/systemd-units/files/services-desktop/avahi-dnsconfd.service b/sys-apps/systemd-units/files/services-desktop/avahi-dnsconfd.service
new file mode 100644
index 0000000..b4fc3e8
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/avahi-dnsconfd.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=Avahi DNS Configuration Daemon
+Requires=avahi-daemon.service
+After=avahi-daemon.service
+
+[Service]
+RemainAfterExit=yes
+ExecStart=/usr/sbin/avahi-dnsconfd -s
+ExecReload=/usr/sbin/avahi-dnsconfd -r
+
+[Install]
+WantedBy=graphical.target
diff --git a/sys-apps/systemd-units/files/services-desktop/console-kit-daemon.service b/sys-apps/systemd-units/files/services-desktop/console-kit-daemon.service
new file mode 100644
index 0000000..0a2cf6b
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/console-kit-daemon.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=ConsoleKit
+After=syslog.target
+
+[Service]
+Type=dbus
+BusName=org.freedesktop.ConsoleKit
+ExecStart=/usr/sbin/console-kit-daemon --no-daemon
+
+[Install]
+WantedBy=graphical.target
diff --git a/sys-apps/systemd-units/files/services-desktop/dhcpcd.service b/sys-apps/systemd-units/files/services-desktop/dhcpcd.service
new file mode 100644
index 0000000..7ab2105
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/dhcpcd.service
@@ -0,0 +1,10 @@
+[Unit]
+Description=Dhcpcd
+
+[Service]
+Type=forking
+ExecStart=/sbin/dhcpcd -q
+PIDFile=/var/run/dhcpcd.pid
+
+[Install]
+WantedBy=graphical.target
diff --git a/sys-apps/systemd-units/files/services-desktop/gdm.service b/sys-apps/systemd-units/files/services-desktop/gdm.service
new file mode 100644
index 0000000..3292353
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/gdm.service
@@ -0,0 +1,13 @@
+[Unit]
+Description=Gnome Display Manager
+After=syslog.target dbus.target hald.service console-kit-daemon.service
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/gdm -nodaemon --pidfile /var/run/gdm.pid
+ExecStop=/usr/sbin/gdm-stop
+PIDFile=/var/run/gdm.pid
+
+[Install]
+Alias=display-manager.service
+WantedBy=graphical.target
diff --git a/sys-apps/systemd-units/files/services-desktop/hald.service b/sys-apps/systemd-units/files/services-desktop/hald.service
new file mode 100644
index 0000000..6a9b6d2
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/hald.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Hardware Abstraction Layer Daemon
+After=syslog.target
+
+[Service]
+Type=dbus
+BusName=org.freedesktop.Hal
+ExecStart=/usr/sbin/hald --use-syslog --daemon=no
+
+[Install]
+WantedBy=graphical.target
diff --git a/sys-apps/systemd-units/files/services-desktop/iptables.service b/sys-apps/systemd-units/files/services-desktop/iptables.service
new file mode 100644
index 0000000..975a762
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/iptables.service
@@ -0,0 +1,18 @@
+# This file is part of systemd.
+#
+# systemd is free software; you can redistribute it and/or modify it
+# under the terms of the GNU General Public License as published by
+# the Free Software Foundation; either version 2 of the License, or
+# (at your option) any later version.
+
+[Unit]
+Description=iptables
+DefaultDependencies=false
+
+[Service]
+Type=oneshot
+RemainAfterExit=yes
+ExecStart=/sbin/iptables-restore /var/lib/iptables/rules-save
+
+[Install]
+WantedBy=sysinit.target
diff --git a/sys-apps/systemd-units/files/services-desktop/policykit-daemon.service b/sys-apps/systemd-units/files/services-desktop/policykit-daemon.service
new file mode 100644
index 0000000..787a3d4
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/policykit-daemon.service
@@ -0,0 +1,11 @@
+[Unit]
+Description=PolicyKit
+After=syslog.target
+
+[Service]
+Type=dbus
+BusName=org.freedesktop.PolicyKit
+ExecStart=/usr/libexec/polkitd --no-exit
+
+[Install]
+WantedBy=graphical.target
diff --git a/sys-apps/systemd-units/files/services-desktop/wpa_supplicant.service b/sys-apps/systemd-units/files/services-desktop/wpa_supplicant.service
new file mode 100644
index 0000000..8e115d6
--- /dev/null
+++ b/sys-apps/systemd-units/files/services-desktop/wpa_supplicant.service
@@ -0,0 +1,10 @@
+[Unit]
+Description=WPA supplicant
+
+[Service]
+Type=forking
+ExecStart=/usr/sbin/wpa_supplicant -c/etc/wpa_supplicant/wpa_supplicant.conf -iwlan0 -B -P /var/run/wpa_supplicant.pid
+PIDFile=/var/run/wpa_supplicant.pid
+
+[Install]
+WantedBy=graphical.target