diff options
author | Lennart Poettering <lennart@poettering.net> | 2024-09-06 16:30:54 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2024-09-09 19:03:48 +0200 |
commit | 229d4a980607e9478cf1935793652ddd9a14618b (patch) | |
tree | 67a8fa54e607e3d1aa16427829dda3dcc08f87f9 /tmpfiles.d | |
parent | machinectl: suppress redirection notice if --quiet is specified (diff) | |
download | systemd-229d4a980607e9478cf1935793652ddd9a14618b.tar.xz systemd-229d4a980607e9478cf1935793652ddd9a14618b.zip |
shell: define three system credentials we can propagate into shell prompts and welcome messages
Diffstat (limited to 'tmpfiles.d')
-rw-r--r-- | tmpfiles.d/20-systemd-shell-extra.conf.in | 12 | ||||
-rw-r--r-- | tmpfiles.d/meson.build | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/tmpfiles.d/20-systemd-shell-extra.conf.in b/tmpfiles.d/20-systemd-shell-extra.conf.in new file mode 100644 index 0000000000..8ebe83dd69 --- /dev/null +++ b/tmpfiles.d/20-systemd-shell-extra.conf.in @@ -0,0 +1,12 @@ +# This file is part of systemd. +# +# systemd is free software; you can redistribute it and/or modify it +# under the terms of the GNU Lesser General Public License as published by +# the Free Software Foundation; either version 2.1 of the License, or +# (at your option) any later version. + +# See tmpfiles.d(5) for details + +{% if LINK_SHELL_EXTRA_DROPIN %} +L {{SHELLPROFILEDIR}}/70-systemd-shell-extra.sh - - - - {{LIBEXECDIR}}/profile.d/70-systemd-shell-extra.sh +{% endif %} diff --git a/tmpfiles.d/meson.build b/tmpfiles.d/meson.build index bec24ac7b4..8d05abcfc1 100644 --- a/tmpfiles.d/meson.build +++ b/tmpfiles.d/meson.build @@ -36,6 +36,7 @@ in_files = [['etc.conf', ''], ['var.conf', ''], ['20-systemd-userdb.conf', 'ENABLE_SSH_USERDB_CONFIG'], ['20-systemd-ssh-generator.conf', 'ENABLE_SSH_PROXY_CONFIG'], + ['20-systemd-shell-extra.conf', 'LINK_SHELL_EXTRA_DROPIN'], ] foreach pair : in_files |