Skip to content
Snippets Groups Projects
Commit 14eed7f7 authored by intrigeri's avatar intrigeri
Browse files

Remove spurious quotes that broke the sys helper (Closes: Redmine#6803).

Thanks to Jools Wills <jools@oxfordinspire.co.uk> for the patch.
parent 1e6b16d1
Branches
Tags
No related merge requests found
......@@ -24,14 +24,14 @@ sys_wizard() {
bios="bios = no"
for opt in $result; do
case $opt in
'"packages"') packages="packages = yes";;
'"partitions"') partitions="partitions = yes";;
'"sfdisk"') sfdisk="dosfdisk = yes";;
'"hardware"') hardware="hardware = yes";;
'"luksheaders"') luksheaders="luksheaders = yes";;
'"lvm"') lvm="lvm = yes";;
'"mbr"') mbr="mbr = yes";;
'"bios"') bios="bios = yes";;
'packages') packages="packages = yes";;
'partitions') partitions="partitions = yes";;
'sfdisk') sfdisk="dosfdisk = yes";;
'hardware') hardware="hardware = yes";;
'luksheaders') luksheaders="luksheaders = yes";;
'lvm') lvm="lvm = yes";;
'mbr') mbr="mbr = yes";;
'bios') bios="bios = yes";;
esac
done
get_next_filename $configdirectory/10.sys
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment