You've already forked fedora-kiwi-descriptions
mirror of
https://github.com/t2linux/fedora-kiwi-descriptions.git
synced 2026-04-30 13:53:48 -07:00
11e6913afa
This has been fixed properly with kiwi 9.25.21.
6 lines
209 B
Bash
Executable File
6 lines
209 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Set ESP mount options to match what Fedora does
|
|
# https://github.com/OSInside/kiwi/issues/2201
|
|
gawk -i inplace '$2 == "/boot/efi" { $4 = $4",umask=0077,shortname=winnt" } { print $0 }' /etc/fstab
|