chiark / gitweb /
execute: support minimal environment variable replacement when executing processes
[elogind.git] / src / special.h
1 /*-*- Mode: C; c-basic-offset: 8 -*-*/
2
3 #ifndef foospecialhfoo
4 #define foospecialhfoo
5
6 /***
7   This file is part of systemd.
8
9   Copyright 2010 Lennart Poettering
10
11   systemd is free software; you can redistribute it and/or modify it
12   under the terms of the GNU General Public License as published by
13   the Free Software Foundation; either version 2 of the License, or
14   (at your option) any later version.
15
16   systemd is distributed in the hope that it will be useful, but
17   WITHOUT ANY WARRANTY; without even the implied warranty of
18   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19   General Public License for more details.
20
21   You should have received a copy of the GNU General Public License
22   along with systemd; If not, see <http://www.gnu.org/licenses/>.
23 ***/
24
25 #define SPECIAL_DEFAULT_TARGET "default.target"
26
27 /* This is not really intended to be started by directly. This is
28  * mostly so that other targets (reboot/halt/poweroff) can depend on
29  * it to bring all services down that want to be brought down on
30  * system shutdown. */
31 #define SPECIAL_SHUTDOWN_TARGET "shutdown.target"
32
33 #define SPECIAL_LOGGER_SOCKET "systemd-logger.socket"
34
35 #define SPECIAL_KBREQUEST_TARGET "kbrequest.target"
36 #define SPECIAL_SIGPWR_TARGET "sigpwr.target"
37 #define SPECIAL_CTRL_ALT_DEL_TARGET "ctrl-alt-del.target"
38
39 #define SPECIAL_LOCAL_FS_TARGET "local-fs.target"         /* LSB's $local_fs */
40 #define SPECIAL_REMOTE_FS_TARGET "remote-fs.target"       /* LSB's $remote_fs */
41 #define SPECIAL_SWAP_TARGET "swap.target"
42 #define SPECIAL_NETWORK_TARGET "network.target"           /* LSB's $network */
43 #define SPECIAL_NSS_LOOKUP_TARGET "nss-lookup.target"     /* LSB's $named */
44 #define SPECIAL_RPCBIND_TARGET "rpcbind.target"           /* LSB's $portmap */
45 #define SPECIAL_SYSLOG_TARGET "syslog.target"             /* LSB's $syslog; Should pull in syslog.socket or syslog.service */
46 #define SPECIAL_RTC_SET_TARGET "rtc-set.target"           /* LSB's $time */
47 #define SPECIAL_DISPLAY_MANAGER_SERVICE "display-manager.service"       /* Debian's $x-display-manager */
48 #define SPECIAL_MAIL_TRANSFER_AGENT_TARGET "mail-transfer-agent.target" /* Debian's $mail-{transport|transfer-agent */
49 #define SPECIAL_DBUS_TARGET "dbus.target"
50 #define SPECIAL_BASIC_TARGET "basic.target"
51 #define SPECIAL_SOCKETS_TARGET "sockets.target"
52 #define SPECIAL_SYSINIT_TARGET "sysinit.target"
53 #define SPECIAL_RESCUE_TARGET "rescue.target"
54 #define SPECIAL_EXIT_SERVICE "exit.service"
55 #define SPECIAL_EMERGENCY_SERVICE "emergency.service"
56 #define SPECIAL_HALT_TARGET "halt.target"
57 #define SPECIAL_POWEROFF_TARGET "poweroff.target"
58 #define SPECIAL_REBOOT_TARGET "reboot.target"
59
60 #ifndef SPECIAL_DBUS_SERVICE
61 #define SPECIAL_DBUS_SERVICE "dbus.service"
62 #endif
63
64 #ifndef SPECIAL_SYSLOG_SERVICE
65 #define SPECIAL_SYSLOG_SERVICE "syslog.service"
66 #endif
67
68 /* For SysV compatibility. Usually an alias for a saner target. On
69  * SysV-free systems this doesn't exist. */
70 #define SPECIAL_RUNLEVEL2_TARGET "runlevel2.target"
71 #define SPECIAL_RUNLEVEL3_TARGET "runlevel3.target"
72 #define SPECIAL_RUNLEVEL4_TARGET "runlevel4.target"
73 #define SPECIAL_RUNLEVEL5_TARGET "runlevel5.target"
74
75 #endif