1# SPDX-License-Identifier: LGPL-2.1-or-later 2# 3# This file is part of systemd. 4# 5# systemd is free software; you can redistribute it and/or modify it 6# under the terms of the GNU Lesser General Public License as published by 7# the Free Software Foundation; either version 2.1 of the License, or 8# (at your option) any later version. 9 10# Names with prefixes are preferred, and the run-together names should be 11# considered deprecated (though there is no plan to remove them). New names 12# shall have underscores. 13 14prefix=/usr 15root_prefix={{ROOTPREFIX_NOSLASH}} 16rootprefix=${root_prefix} 17sysconf_dir={{SYSCONF_DIR}} 18sysconfdir=${sysconf_dir} 19 20systemd_util_dir=${root_prefix}/lib/systemd 21systemdutildir=${systemd_util_dir} 22 23systemd_system_unit_dir=${rootprefix}/lib/systemd/system 24systemdsystemunitdir=${systemd_system_unit_dir} 25 26systemd_system_preset_dir=${rootprefix}/lib/systemd/system-preset 27systemdsystempresetdir=${systemd_system_preset_dir} 28 29systemd_user_unit_dir=${prefix}/lib/systemd/user 30systemduserunitdir=${systemd_user_unit_dir} 31 32systemd_user_preset_dir=${prefix}/lib/systemd/user-preset 33systemduserpresetdir=${systemd_user_preset_dir} 34 35systemd_system_conf_dir=${sysconfdir}/systemd/system 36systemdsystemconfdir=${systemd_system_conf_dir} 37 38systemd_user_conf_dir=${sysconfdir}/systemd/user 39systemduserconfdir=${systemd_user_conf_dir} 40 41systemd_system_unit_path=${systemd_system_conf_dir}:/etc/systemd/system:/run/systemd/system:/usr/local/lib/systemd/system:${systemd_system_unit_dir}:/usr/lib/systemd/system:/lib/systemd/system 42systemdsystemunitpath=${systemd_system_unit_path} 43 44systemd_user_unit_path=${systemd_user_conf_dir}:/etc/systemd/user:/run/systemd/user:/usr/local/lib/systemd/user:/usr/local/share/systemd/user:${systemd_user_unit_dir}:/usr/lib/systemd/user:/usr/share/systemd/user 45systemduserunitpath=${systemd_user_unit_path} 46 47systemd_system_generator_dir=${root_prefix}/lib/systemd/system-generators 48systemdsystemgeneratordir=${systemd_system_generator_dir} 49 50systemd_user_generator_dir=${prefix}/lib/systemd/user-generators 51systemdusergeneratordir=${systemd_user_generator_dir} 52 53systemd_system_generator_path=/run/systemd/system-generators:/etc/systemd/system-generators:/usr/local/lib/systemd/system-generators:${systemd_system_generator_dir} 54systemdsystemgeneratorpath=${systemd_system_generator_path} 55 56systemd_user_generator_path=/run/systemd/user-generators:/etc/systemd/user-generators:/usr/local/lib/systemd/user-generators:${systemd_user_generator_dir} 57systemdusergeneratorpath=${systemd_user_generator_path} 58 59systemd_sleep_dir=${root_prefix}/lib/systemd/system-sleep 60systemdsleepdir=${systemd_sleep_dir} 61 62systemd_shutdown_dir=${root_prefix}/lib/systemd/system-shutdown 63systemdshutdowndir=${systemd_shutdown_dir} 64 65tmpfiles_dir=${prefix}/lib/tmpfiles.d 66tmpfilesdir=${tmpfiles_dir} 67 68sysusers_dir=${rootprefix}/lib/sysusers.d 69sysusersdir=${sysusers_dir} 70 71sysctl_dir=${rootprefix}/lib/sysctl.d 72sysctldir=${sysctl_dir} 73 74binfmt_dir=${rootprefix}/lib/binfmt.d 75binfmtdir=${binfmt_dir} 76 77modules_load_dir=${rootprefix}/lib/modules-load.d 78modulesloaddir=${modules_load_dir} 79 80catalog_dir=${prefix}/lib/systemd/catalog 81catalogdir=${catalog_dir} 82 83system_uid_max={{SYSTEM_UID_MAX}} 84systemuidmax=${system_uid_max} 85system_gid_max={{SYSTEM_GID_MAX}} 86systemgidmax=${system_gid_max} 87 88dynamic_uid_min={{DYNAMIC_UID_MIN}} 89dynamicuidmin=${dynamic_uid_min} 90dynamic_uid_max={{DYNAMIC_UID_MAX}} 91dynamicuidmax=${dynamic_uid_max} 92 93container_uid_base_min={{CONTAINER_UID_BASE_MIN}} 94containeruidbasemin=${container_uid_base_min} 95container_uid_base_max={{CONTAINER_UID_BASE_MAX}} 96containeruidbasemax=${container_uid_base_max} 97 98Name: systemd 99Description: systemd System and Service Manager 100URL: {{PROJECT_URL}} 101Version: {{PROJECT_VERSION}} 102