Minor format adjustments:

- Added missing quotation marks to a warning msg
- Adjusted sed program for better readability
This commit is contained in:
rmm 2023-07-09 19:45:45 +02:00
parent d2373bf287
commit 7431473858

View File

@ -177,7 +177,7 @@ function install_mod {
sed -i '/my $dinfo = df('\''\/'\'', 1);/i\'$'\t''$res->{thermalstate} = `sensors -j`;\n' "$nodespm" sed -i '/my $dinfo = df('\''\/'\'', 1);/i\'$'\t''$res->{thermalstate} = `sensors -j`;\n' "$nodespm"
msg "Added thermalstate to $nodespm." msg "Added thermalstate to $nodespm."
else else
warn "Thermalstate already added to $nodespm." warn "Thermalstate already added to \"$nodespm.\""
fi fi
# Add new item to the items array in PVE.node.StatusView # Add new item to the items array in PVE.node.StatusView
@ -190,7 +190,8 @@ function install_mod {
sed -i "/Ext.define('PVE\.node\.StatusView'/,/\},/ { sed -i "/Ext.define('PVE\.node\.StatusView'/,/\},/ {
s/\(bodyPadding:\) '[^']*'/\1 '20 15 20 15'/ s/\(bodyPadding:\) '[^']*'/\1 '20 15 20 15'/
s/height: [0-9]\+/minHeight: 360,\n\tflex: 1/ s/height: [0-9]\+/minHeight: 360,\n\tflex: 1/
s/\(tableAttrs:.*$\)/trAttrs: \{ valign: 'top' \},\n\t\1/}" "$pvemanagerlibjs" s/\(tableAttrs:.*$\)/trAttrs: \{ valign: 'top' \},\n\t\1/
}" "$pvemanagerlibjs"
msg "Expanded space in \"$pvemanagerlibjs\"." msg "Expanded space in \"$pvemanagerlibjs\"."
sed -i "/^Ext.define('PVE.node.StatusView',/ { sed -i "/^Ext.define('PVE.node.StatusView',/ {