diff options
author | Bastien Durel <bastien@durel.org> | 2017-04-20 16:15:59 +0200 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2019-10-28 19:11:39 +0000 |
commit | 987f5b81589ec99758bebc6eeb6a58c06ddfee03 (patch) | |
tree | 8dfff1cd75e1e7f877c9dc0338c83b864e75541c /main | |
parent | 09700ec87c7e12b54464b7e459642bbfc0a4b2c3 (diff) | |
download | aports-987f5b81589ec99758bebc6eeb6a58c06ddfee03.tar.bz2 aports-987f5b81589ec99758bebc6eeb6a58c06ddfee03.tar.xz |
add real timeout to grub config file
as $rtimeout is undefined, config file ends with
timeout
line, which makes pvgrub fail on int parsing
Diffstat (limited to 'main')
-rwxr-xr-x | main/compat-pvgrub/update-pvgrub | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/main/compat-pvgrub/update-pvgrub b/main/compat-pvgrub/update-pvgrub index 56594a337b..7625d1d923 100755 --- a/main/compat-pvgrub/update-pvgrub +++ b/main/compat-pvgrub/update-pvgrub @@ -70,7 +70,7 @@ echo "default 0" >> $conf.new if [ "$hidden" = "1" ]; then echo "hiddenmenu" >> $conf.new fi -echo "timeout $rtimeout" >> $conf.new +echo "timeout $timeout" >> $conf.new lst=0 |