Commit 25dc3235 authored by longpanda's avatar longpanda
Browse files

Support CentOS-9-Stream (#1335)

parent 446597d8
...@@ -92,7 +92,8 @@ if [ -f /etc/system-release ]; then ...@@ -92,7 +92,8 @@ if [ -f /etc/system-release ]; then
vtNeedRepo="yes" vtNeedRepo="yes"
fi fi
fi fi
if $GREP -q el8 /proc/version; then
if $GREP -q 'el[89]' /proc/version; then
vtNeedRepo="yes" vtNeedRepo="yes"
fi fi
...@@ -102,6 +103,8 @@ if $GREP -i -q Fedora /proc/version; then ...@@ -102,6 +103,8 @@ if $GREP -i -q Fedora /proc/version; then
fi fi
fi fi
echo "vtNeedRepo=$vtNeedRepo" >> $VTLOG
if [ "$vtNeedRepo" = "yes" ]; then if [ "$vtNeedRepo" = "yes" ]; then
$BUSYBOX_PATH/cp -a $VTOY_PATH/hook/rhel7/ventoy-repo.sh /lib/dracut/hooks/pre-pivot/99-ventoy-repo.sh $BUSYBOX_PATH/cp -a $VTOY_PATH/hook/rhel7/ventoy-repo.sh /lib/dracut/hooks/pre-pivot/99-ventoy-repo.sh
fi fi
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment