diff options
author | Marc-Antoine Perennou <Marc-Antoine@Perennou.com> | 2010-05-20 10:31:04 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-05-20 17:56:16 +0200 |
commit | ea2d9ed42d9896d2ade0dcd5d555c35778c19049 (patch) | |
tree | e9ac55be9794baa6067093434f9187c0287b9922 /units/gentoo | |
parent | cfe243e3720062c2e0eecd8bb0bdd7b4059e156d (diff) |
units: add services for Gentoo
Diffstat (limited to 'units/gentoo')
-rw-r--r-- | units/gentoo/halt.service | 19 | ||||
-rw-r--r-- | units/gentoo/killall.service | 15 | ||||
-rw-r--r-- | units/gentoo/poweroff.service | 18 | ||||
-rw-r--r-- | units/gentoo/reboot.service | 18 | ||||
-rw-r--r-- | units/gentoo/xdm.service | 16 |
5 files changed, 86 insertions, 0 deletions
diff --git a/units/gentoo/halt.service b/units/gentoo/halt.service new file mode 100644 index 0000000000..8762a7827b --- /dev/null +++ b/units/gentoo/halt.service @@ -0,0 +1,19 @@ +# 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=Halt +Requires=shutdown.target killall.service +After=shutdown.target killall.service +Conflicts=dev-hugepages.automount dev-mqueue.automount proc-sys-fs-binfmt_misc.automount sys-kernel-debug.automount + +[Service] +Type=finish +ValidNoProcess=yes +Environment=INIT_HALT=HALT +Environment=RC_DOWN_HARDDISK=yes +ExecStart=/etc/init.d/shutdown.sh diff --git a/units/gentoo/killall.service b/units/gentoo/killall.service new file mode 100644 index 0000000000..a02062f815 --- /dev/null +++ b/units/gentoo/killall.service @@ -0,0 +1,15 @@ +# 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=Kill All Processes +After=shutdown.target + +[Service] +Type=finish +ValidNoProcess=yes +ExecStart=/etc/init.d/killprocs start diff --git a/units/gentoo/poweroff.service b/units/gentoo/poweroff.service new file mode 100644 index 0000000000..1a0a6a44f8 --- /dev/null +++ b/units/gentoo/poweroff.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=Power-Off +Requires=shutdown.target killall.service +After=shutdown.target killall.service +Conflicts=dev-hugepages.automount dev-mqueue.automount proc-sys-fs-binfmt_misc.automount sys-kernel-debug.automount + +[Service] +Type=finish +ValidNoProcess=yes +Environment=RC_DOWN_HARDDISK=yes +ExecStart=/etc/init.d/shutdown.sh diff --git a/units/gentoo/reboot.service b/units/gentoo/reboot.service new file mode 100644 index 0000000000..92c4962a60 --- /dev/null +++ b/units/gentoo/reboot.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=Reboot +Requires=shutdown.target killall.service +After=shutdown.target killall.service +Conflicts=dev-hugepages.automount dev-mqueue.automount proc-sys-fs-binfmt_misc.automount sys-kernel-debug.automount + +[Service] +Type=finish +ValidNoProcess=yes +Environment=RUNLEVEL=6 +ExecStart=/etc/init.d/reboot.sh diff --git a/units/gentoo/xdm.service b/units/gentoo/xdm.service new file mode 100644 index 0000000000..83949919d3 --- /dev/null +++ b/units/gentoo/xdm.service @@ -0,0 +1,16 @@ +# 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=Display Manager +Before=graphical.target +After=basic.target syslog.target messagebus.service haldaemon.service +Conflicts=shutdown.target + +[Service] +ExecStart=/etc/init.d/xdm start +Type=simple |