diff options
| author | nl6720 <nl6720@gmail.com> | 2023-07-30 15:52:51 +0300 |
|---|---|---|
| committer | nl6720 <nl6720@gmail.com> | 2023-08-05 16:00:28 +0300 |
| commit | 0b8704fe4bda6b9208b5bb9e4060a0aeeea2a669 (patch) | |
| tree | b91e8858338a5b80710dbf38c185fad006774d49 /configs/releng | |
| parent | 8ddd08f51dc4117fc940541225d09cbc805aedeb (diff) | |
| download | archiso-0b8704fe4bda6b9208b5bb9e4060a0aeeea2a669.tar.gz archiso-0b8704fe4bda6b9208b5bb9e4060a0aeeea2a669.tar.bz2 | |
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 09b0428128700f37bd465eb54c6e45f69c17617d ("configs/releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount: use ramfs").
Diffstat (limited to 'configs/releng')
| -rw-r--r-- | configs/releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/configs/releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount b/configs/releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount index 0ba0e67..038961e 100644 --- a/configs/releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount +++ b/configs/releng/airootfs/etc/systemd/system/etc-pacman.d-gnupg.mount @@ -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 |
