mountpoint-util: tmpfs supports uid=/gid= mount options

As tmpfs(5) says, both uid= and gid= are supported since kernel 2.5.7 and
the mount utility seems to agree:

```
# stat -c "%U:%G" mnt
root:root
# mount -o uid=testuser,gid=testuser -t tmpfs tmpfs mnt
# stat -c "%U:%G" mnt
testuser:testuser
```

However, systemd-mount currently complains:

```
# systemd-mount --owner testuser -t tmpfs tmpfs mnt
File system type tmpfs is not known to support uid=/gid=, refusing.
```
This commit is contained in:
Frantisek Sumsal 2022-11-06 22:49:47 +01:00
parent 59377dbef2
commit 7d4f00c88c

View file

@ -480,6 +480,7 @@ bool fstype_can_uid_gid(const char *fstype) {
"iso9660",
"msdos",
"ntfs",
"tmpfs",
"vfat");
}