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:
parent
8ddd08f51d
commit
0b8704fe4b
@ -12,6 +12,8 @@ Changed
|
||||
-------
|
||||
|
||||
- Moved custom ``mkinitcpio.conf`` files to ``/etc/mkinitcpio.conf.d/archiso.conf``.
|
||||
- Mount ``/etc/pacman.d/gnupg`` on tmpfs with option ``noswap`` instead of using ramfs. This ensures there is a limit to
|
||||
the file system size.
|
||||
|
||||
Deprecated
|
||||
----------
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user