configs/releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount: use tmpfs with noswap option

Since tmpfs has a `noswap` option, use it instead of ramfs. Unlike
ramfs, tmpfs has a limit to its size.

This reverts commit 09b0428128 ("configs/releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount: use ramfs").
This commit is contained in:
nl6720 2023-07-30 15:52:51 +03:00
parent 9278ebfc21
commit 100b6087d2
1 changed files with 3 additions and 3 deletions

View File

@ -2,7 +2,7 @@
Description=Temporary /etc/pacman.d/gnupg directory
[Mount]
What=ramfs
What=tmpfs
Where=/etc/pacman.d/gnupg
Type=ramfs
Options=mode=0755
Type=tmpfs
Options=mode=0755,noswap