2010-08-17 05:33:07 +04:00
/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2010-06-18 06:22:59 +04:00
# ifndef foospecialhfoo
# define foospecialhfoo
/***
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/>.
* * */
# define SPECIAL_DEFAULT_TARGET "default.target"
/* This is not really intended to be started by directly. This is
* mostly so that other targets ( reboot / halt / poweroff ) can depend on
* it to bring all services down that want to be brought down on
* system shutdown . */
# define SPECIAL_SHUTDOWN_TARGET "shutdown.target"
2010-07-10 04:41:06 +04:00
# define SPECIAL_UMOUNT_TARGET "umount.target"
2010-06-18 06:22:59 +04:00
# define SPECIAL_LOGGER_SOCKET "systemd-logger.socket"
# define SPECIAL_KBREQUEST_TARGET "kbrequest.target"
# define SPECIAL_SIGPWR_TARGET "sigpwr.target"
# define SPECIAL_CTRL_ALT_DEL_TARGET "ctrl-alt-del.target"
# define SPECIAL_LOCAL_FS_TARGET "local-fs.target" /* LSB's $local_fs */
# define SPECIAL_REMOTE_FS_TARGET "remote-fs.target" /* LSB's $remote_fs */
# define SPECIAL_SWAP_TARGET "swap.target"
# define SPECIAL_NETWORK_TARGET "network.target" /* LSB's $network */
# define SPECIAL_NSS_LOOKUP_TARGET "nss-lookup.target" /* LSB's $named */
# define SPECIAL_RPCBIND_TARGET "rpcbind.target" /* LSB's $portmap */
# define SPECIAL_SYSLOG_TARGET "syslog.target" /* LSB's $syslog; Should pull in syslog.socket or syslog.service */
# define SPECIAL_RTC_SET_TARGET "rtc-set.target" /* LSB's $time */
# define SPECIAL_DISPLAY_MANAGER_SERVICE "display-manager.service" /* Debian's $x-display-manager */
# define SPECIAL_MAIL_TRANSFER_AGENT_TARGET "mail-transfer-agent.target" /* Debian's $mail-{transport|transfer-agent */
2010-09-14 01:53:59 +04:00
# define SPECIAL_HTTP_DAEMON_TARGET "http-daemon.target"
2010-07-03 21:48:33 +04:00
# define SPECIAL_DBUS_TARGET "dbus.target"
2010-06-18 06:22:59 +04:00
# define SPECIAL_BASIC_TARGET "basic.target"
2010-07-03 21:48:33 +04:00
# define SPECIAL_SOCKETS_TARGET "sockets.target"
2010-06-18 06:22:59 +04:00
# define SPECIAL_SYSINIT_TARGET "sysinit.target"
2010-10-20 01:45:18 +04:00
# define SPECIAL_FSCK_SERVICE "fsck@.service"
2010-10-20 17:21:44 +04:00
# define SPECIAL_QUOTACHECK_SERVICE "quotacheck.service"
2010-06-18 06:22:59 +04:00
# define SPECIAL_RESCUE_TARGET "rescue.target"
2010-10-14 02:54:48 +04:00
# define SPECIAL_EXIT_TARGET "exit.target"
2010-07-13 01:49:20 +04:00
# define SPECIAL_EMERGENCY_TARGET "emergency.target"
2010-06-18 06:22:59 +04:00
# define SPECIAL_HALT_TARGET "halt.target"
# define SPECIAL_POWEROFF_TARGET "poweroff.target"
# define SPECIAL_REBOOT_TARGET "reboot.target"
2010-10-14 02:54:48 +04:00
# define SPECIAL_KEXEC_TARGET "kexec.target"
2010-06-18 06:22:59 +04:00
# define SPECIAL_DBUS_SERVICE "dbus.service"
2010-09-01 05:30:59 +04:00
# define SPECIAL_DBUS_SOCKET "dbus.socket"
2010-11-22 23:06:38 +03:00
# define SPECIAL_REMOUNT_ROOTFS_SERVICE "remount-rootfs.service"
2010-06-18 06:22:59 +04:00
# ifndef SPECIAL_SYSLOG_SERVICE
# define SPECIAL_SYSLOG_SERVICE "syslog.service"
# endif
/* For SysV compatibility. Usually an alias for a saner target. On
* SysV - free systems this doesn ' t exist . */
# define SPECIAL_RUNLEVEL2_TARGET "runlevel2.target"
# define SPECIAL_RUNLEVEL3_TARGET "runlevel3.target"
# define SPECIAL_RUNLEVEL4_TARGET "runlevel4.target"
# define SPECIAL_RUNLEVEL5_TARGET "runlevel5.target"
# endif