diff options
Diffstat (limited to 'units')
-rw-r--r-- | units/.gitignore | 4 | ||||
-rw-r--r-- | units/basic.target.m4 | 28 | ||||
l--------- | units/fedora/Makefile | 1 | ||||
-rw-r--r-- | units/fedora/halt.service | 29 | ||||
-rw-r--r-- | units/fedora/killall.service | 25 | ||||
-rw-r--r-- | units/fedora/poweroff.service | 28 | ||||
-rw-r--r-- | units/fedora/prefdm.service | 27 | ||||
-rw-r--r-- | units/fedora/rc-local.service | 31 | ||||
-rw-r--r-- | units/fedora/reboot.service | 28 | ||||
-rw-r--r-- | units/fedora/sysinit.service | 26 | ||||
-rw-r--r-- | units/getty.target | 19 | ||||
-rw-r--r-- | units/getty@.service.m4 | 29 | ||||
-rw-r--r-- | units/graphical.target.m4 | 27 | ||||
-rw-r--r-- | units/halt.target | 23 | ||||
-rw-r--r-- | units/multi-user.target.m4 | 27 | ||||
-rw-r--r-- | units/poweroff.target | 24 | ||||
-rw-r--r-- | units/reboot.target | 24 | ||||
-rw-r--r-- | units/rescue.target | 24 |
18 files changed, 424 insertions, 0 deletions
diff --git a/units/.gitignore b/units/.gitignore index 02fd4307f2..21b3b384c7 100644 --- a/units/.gitignore +++ b/units/.gitignore @@ -1,3 +1,7 @@ systemd-initctl.service systemd-logger.service syslog.target +basic.target +graphical.target +multi-user.target +getty@.service diff --git a/units/basic.target.m4 b/units/basic.target.m4 new file mode 100644 index 0000000000..437e33d5e6 --- /dev/null +++ b/units/basic.target.m4 @@ -0,0 +1,28 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Basic System +Requires=local-fs.target swap.target sockets.target +After=local-fs.target swap.target sockets.target + +m4_ifdef(`TARGET_FEDORA', +# Hook in Fedora's /etc/rc.d/rc.sysinit +Requires=sysinit.service +After=sysinit.service) diff --git a/units/fedora/Makefile b/units/fedora/Makefile new file mode 120000 index 0000000000..50be21181f --- /dev/null +++ b/units/fedora/Makefile @@ -0,0 +1 @@ +../../src/Makefile
\ No newline at end of file diff --git a/units/fedora/halt.service b/units/fedora/halt.service new file mode 100644 index 0000000000..372b7e6f51 --- /dev/null +++ b/units/fedora/halt.service @@ -0,0 +1,29 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Halt +Requires=shutdown.target killall.service +After=shutdown.target killall.service + +[Service] +Type=finish +Environment=INIT_HALT=HALT +Environment=RUNLEVEL=0 +ExecStart=/etc/init.d/halt start diff --git a/units/fedora/killall.service b/units/fedora/killall.service new file mode 100644 index 0000000000..1a6d47f39c --- /dev/null +++ b/units/fedora/killall.service @@ -0,0 +1,25 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Kill All Processes + +[Service] +Type=finish +ExecStart=/etc/init.d/killall start diff --git a/units/fedora/poweroff.service b/units/fedora/poweroff.service new file mode 100644 index 0000000000..82b9fac159 --- /dev/null +++ b/units/fedora/poweroff.service @@ -0,0 +1,28 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Power-Off +Requires=shutdown.target killall.service +After=shutdown.target killall.service + +[Service] +Type=finish +Environment=RUNLEVEL=0 +ExecStart=/etc/init.d/halt start diff --git a/units/fedora/prefdm.service b/units/fedora/prefdm.service new file mode 100644 index 0000000000..6ee35031d9 --- /dev/null +++ b/units/fedora/prefdm.service @@ -0,0 +1,27 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Display Manager +Before=graphical.target +After=basic.target syslog.target messagebus.service haldaemon.service + +[Service] +ExecStart=/etc/X11/prefdm -nodaemon +Type=simple diff --git a/units/fedora/rc-local.service b/units/fedora/rc-local.service new file mode 100644 index 0000000000..b3ece1ed1b --- /dev/null +++ b/units/fedora/rc-local.service @@ -0,0 +1,31 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=/etc/rc.local Compatibility +Requires=basic.target + +# The rcN.d symlink uses the name "local" while the script itself is +# called "rc.local", hence carry both names here. +Names=rc-local.service local.service + +[Service] +ExecStart=/etc/rc.local start +Type=simple +SysVStartPriority=99 diff --git a/units/fedora/reboot.service b/units/fedora/reboot.service new file mode 100644 index 0000000000..45a2934972 --- /dev/null +++ b/units/fedora/reboot.service @@ -0,0 +1,28 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Reboot +Requires=shutdown.target killall.service +After=shutdown.target killall.service + +[Service] +Type=finish +Environment=RUNLEVEL=6 +ExecStart=/etc/init.d/reboot start diff --git a/units/fedora/sysinit.service b/units/fedora/sysinit.service new file mode 100644 index 0000000000..fc71453007 --- /dev/null +++ b/units/fedora/sysinit.service @@ -0,0 +1,26 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=System Initialization +Before=local-fs.target remote-fs.target swap.target sockets.target + +[Service] +ExecStart=/etc/rc.d/rc.sysinit +Type=finish diff --git a/units/getty.target b/units/getty.target new file mode 100644 index 0000000000..099d9525f5 --- /dev/null +++ b/units/getty.target @@ -0,0 +1,19 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +[Unit] +Description=Login Prompts diff --git a/units/getty@.service.m4 b/units/getty@.service.m4 new file mode 100644 index 0000000000..b4dfaf24e1 --- /dev/null +++ b/units/getty@.service.m4 @@ -0,0 +1,29 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details +m4_ifdef(`TARGET_FEDORA', m4_define(`GETTY', `/sbin/mingetty'))m4_dnl +m4_ifdef(`TARGET_DEBIAN', m4_define(`GETTY', `/sbin/getty 38400'))m4_dnl + +[Unit] +Description=Getty on %I +Before=getty.target +After=basic.target + +[Service] +Type=simple +ExecStart=GETTY %I diff --git a/units/graphical.target.m4 b/units/graphical.target.m4 new file mode 100644 index 0000000000..151ad6bb12 --- /dev/null +++ b/units/graphical.target.m4 @@ -0,0 +1,27 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Graphical Interface +Requires=multi-user.target +After=multi-user.target + +m4_ifdef(`TARGET_FEDORA', +# On Fedora Runlevel 5 is graphical login +Names=runlevel5.target) diff --git a/units/halt.target b/units/halt.target new file mode 100644 index 0000000000..2b46198157 --- /dev/null +++ b/units/halt.target @@ -0,0 +1,23 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Halt +Requires=halt.service +After=halt.service diff --git a/units/multi-user.target.m4 b/units/multi-user.target.m4 new file mode 100644 index 0000000000..a841f9a964 --- /dev/null +++ b/units/multi-user.target.m4 @@ -0,0 +1,27 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Multi-User +Requires=basic.target +After=basic.target + +m4_ifdef(`TARGET_FEDORA', +# On Fedora Runlevel 3 is multi-user +Names=runlevel3.target) diff --git a/units/poweroff.target b/units/poweroff.target new file mode 100644 index 0000000000..df491a1907 --- /dev/null +++ b/units/poweroff.target @@ -0,0 +1,24 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Power-Off +Names=runlevel0.target +Requires=poweroff.service +After=poweroff.service diff --git a/units/reboot.target b/units/reboot.target new file mode 100644 index 0000000000..cb7ddeb484 --- /dev/null +++ b/units/reboot.target @@ -0,0 +1,24 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Reboot +Names=runlevel6.target +Requires=reboot.service +After=reboot.service diff --git a/units/rescue.target b/units/rescue.target new file mode 100644 index 0000000000..eb0921e025 --- /dev/null +++ b/units/rescue.target @@ -0,0 +1,24 @@ +# This file is part of systemd. +# +# Copyright 2010 Lennart Poettering +# +# 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. +# +# systemd is distributed in the hope that it will be useful, but +# WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with systemd; If not, see <http://www.gnu.org/licenses/>. + +# See systemd.special(7) for details + +[Unit] +Description=Rescue Prompt +Requires=basic.target +After=basic.target +Names=runlevel1.target |