logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

sd_booted - Test whether the system is running the systemd init system

Description

sd_booted() checks whether the system was booted up using the systemd init system.

Name

sd_booted - Test whether the system is running the systemd init system

Notes

Functions described here are available as a shared library, which can be compiled against and linked to with the libsystemdpkg-config(1) file. Internally, this function checks whether the directory /run/systemd/system/ exists. A simple check like this can also be implemented trivially in shell or any other language.

Return Value

On failure, this call returns a negative errno-style error code. If the system was booted up with systemd as init system, this call returns a positive return value, zero otherwise.

See Also

systemd(1), sd-daemon(3) systemd 257.7 SD_BOOTED(3)

Synopsis

#include<systemd/sd-daemon.h>intsd_booted(void);

See Also