2022-01-07 09:06:18 +00:00
|
|
|
# SPDX-License-Identifier: LGPL-2.1+
|
|
|
|
|
#
|
|
|
|
|
# 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.
|
|
|
|
|
|
2022-06-22 09:53:27 +01:00
|
|
|
## This file is managed by Ansible, YOUR CHANGED WILL BE LOST!
|
|
|
|
|
|
2022-01-07 09:06:18 +00:00
|
|
|
[Unit]
|
|
|
|
|
Description=Temporary Directory (/tmp)
|
|
|
|
|
Documentation=man:hier(7)
|
|
|
|
|
Documentation=https://www.freedesktop.org/wiki/Software/systemd/APIFileSystems
|
|
|
|
|
ConditionPathIsSymbolicLink=!/tmp
|
|
|
|
|
DefaultDependencies=no
|
|
|
|
|
Conflicts=umount.target
|
|
|
|
|
Before=local-fs.target umount.target
|
|
|
|
|
After=swap.target
|
|
|
|
|
|
|
|
|
|
[Mount]
|
|
|
|
|
What=tmpfs
|
|
|
|
|
Where=/tmp
|
|
|
|
|
Type=tmpfs
|
2025-01-22 14:23:31 +00:00
|
|
|
Options=mode=1777,strictatime,{% if rhel9cis_rule_1_1_2_1_2 %}nodev,{% endif %}{% if rhel9cis_rule_1_1_2_1_3 %}nosuid,{% endif %}{% if rhel9cis_rule_1_1_2_1_4 %}noexec{% endif %}
|
2022-01-07 09:06:18 +00:00
|
|
|
|
|
|
|
|
# Make 'systemctl enable tmp.mount' work:
|
|
|
|
|
[Install]
|
2023-03-12 14:11:01 +00:00
|
|
|
WantedBy=local-fs.target
|