golden hour
/usr/lib/dracut/modules.d/95fstab-sys
⬆️ Go Up
Upload
File/Folder
Size
Actions
module-setup.sh
344 B
Del
OK
mount-sys.sh
1.27 KB
Del
OK
Edit: module-setup.sh
#!/usr/bin/bash # called by dracut check() { [[ -f $dracutsysrootdir/etc/fstab.sys ]] || [[ -n $add_fstab || -n $fstab_lines ]] } # called by dracut depends() { echo fs-lib } # called by dracut install() { [[ -f $dracutsysrootdir/etc/fstab.sys ]] && inst_simple /etc/fstab.sys inst_hook pre-pivot 00 "$moddir/mount-sys.sh" }
Save