X-Git-Url: https://glassweightruler.freedombox.rocks/gitweb/Ventoy.git/blobdiff_plain/aa0a2ed06726687595caf35a37946734422eb937..75517039a1ec3483591bac63a2787d272b171fae:/IMG/cpio/ventoy/hook/rhel7/ventoy-inotifyd-hook.sh?ds=inline diff --git a/IMG/cpio/ventoy/hook/rhel7/ventoy-inotifyd-hook.sh b/IMG/cpio/ventoy/hook/rhel7/ventoy-inotifyd-hook.sh index a1431d0..40df0e7 100644 --- a/IMG/cpio/ventoy/hook/rhel7/ventoy-inotifyd-hook.sh +++ b/IMG/cpio/ventoy/hook/rhel7/ventoy-inotifyd-hook.sh @@ -29,17 +29,16 @@ if is_inotify_ventoy_part $3; then vtlog "##### INOTIFYD: $2/$3 is created (YES) ..." - vtGenRulFile='/etc/udev/rules.d/99-live-squash.rules' - if [ -e $vtGenRulFile ] && $GREP -q dmsquash $vtGenRulFile; then - vtScript=$($GREP -m1 'RUN.=' $vtGenRulFile | $AWK -F'RUN.=' '{print $2}' | $SED 's/"\(.*\)".*/\1/') - vtlog "vtScript=$vtScript" - $vtScript - else - vtlog "$vtGenRulFile not exist..." - fi + vtlog "find ventoy partition ..." - $BUSYBOX_PATH/sh $VTOY_PATH/hook/default/udev_disk_hook.sh $3 noreplace + + vtReplaceOpt=noreplace + if [ -f /lib/dracut/hooks/pre-pivot/99-ventoy-repo.sh ]; then + vtReplaceOpt="" + fi + + $BUSYBOX_PATH/sh $VTOY_PATH/hook/default/udev_disk_hook.sh $3 $vtReplaceOpt blkdev_num=$($VTOY_PATH/tool/dmsetup ls | grep ventoy | sed 's/.*(\([0-9][0-9]*\),.*\([0-9][0-9]*\).*/\1:\2/') vtDM=$(ventoy_find_dm_id ${blkdev_num}) @@ -51,6 +50,17 @@ if is_inotify_ventoy_part $3; then ventoy_swap_device /dev/dm-0 /dev/$vtDM fi + + vtGenRulFile='/etc/udev/rules.d/99-live-squash.rules' + if [ -e $vtGenRulFile ] && $GREP -q dmsquash $vtGenRulFile; then + vtScript=$($GREP -m1 'RUN.=' $vtGenRulFile | $AWK -F'RUN.=' '{print $2}' | $SED 's/"\(.*\)".*/\1/') + vtlog "vtScript=$vtScript" + $vtScript + else + vtlog "$vtGenRulFile not exist..." + fi + + if [ -e /sbin/anaconda-diskroot ]; then vtlog "set anaconda-diskroot ..." /sbin/anaconda-diskroot /dev/dm-0