1 <?xml version='1.0'?> <!--*-nxml-*-->
2 <!DOCTYPE refentry PUBLIC "-//OASIS//DTD DocBook XML V4.2//EN"
3 "http://www.oasis-open.org/docbook/xml/4.2/docbookx.dtd">
6 This file is part of systemd.
8 Copyright 2010 Lennart Poettering
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
24 <refentry id="sd_booted"
25 xmlns:xi="http://www.w3.org/2001/XInclude">
28 <title>sd_booted</title>
29 <productname>systemd</productname>
33 <contrib>Developer</contrib>
34 <firstname>Lennart</firstname>
35 <surname>Poettering</surname>
36 <email>lennart@poettering.net</email>
42 <refentrytitle>sd_booted</refentrytitle>
43 <manvolnum>3</manvolnum>
47 <refname>sd_booted</refname>
48 <refpurpose>Test whether the system is running the systemd init system</refpurpose>
53 <funcsynopsisinfo>#include <systemd/sd-daemon.h></funcsynopsisinfo>
56 <funcdef>int <function>sd_booted</function></funcdef>
57 <paramdef>void</paramdef>
63 <title>Description</title>
64 <para><function>sd_booted()</function> checks whether
65 the system was booted up using the systemd init system.</para>
69 <title>Return Value</title>
71 <para>On failure, this call returns a negative
72 errno-style error code. If the system was booted up
73 with systemd as init system, this call returns a
74 positive return value, zero otherwise.</para>
80 <xi:include href="libsystemd-pkgconfig.xml" xpointer="pkgconfig-text"/>
82 <para>Internally, this function checks whether the
83 directory <filename>/run/systemd/system/</filename>
84 exists. A simple check like this can also be
85 implemented trivially in shell or any other
90 <title>See Also</title>
92 <citerefentry><refentrytitle>systemd</refentrytitle><manvolnum>1</manvolnum></citerefentry>,
93 <citerefentry><refentrytitle>sd-daemon</refentrytitle><manvolnum>3</manvolnum></citerefentry>