Skip to content

Commit

Permalink
Merge pull request #869 from yast/cmdline-parameter-not-set
Browse files Browse the repository at this point in the history
Fix "Cmdline: parameter not set" for virt-install (bsc#1172139)
  • Loading branch information
mvidner committed Jun 25, 2020
2 parents a001d5e + 57ecef0 commit 0c41943
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions package/yast2-installation.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Thu Jun 25 13:24:45 UTC 2020 - Martin Vidner <mvidner@suse.com>

- Fix "Cmdline: parameter not set" for virt-install (bsc#1172139)
- 4.3.7

-------------------------------------------------------------------
Thu Jun 25 11:07:53 CEST 2020 - aschnell@suse.com

Expand Down
2 changes: 1 addition & 1 deletion package/yast2-installation.spec
Expand Up @@ -16,7 +16,7 @@
#

Name: yast2-installation
Version: 4.3.6
Version: 4.3.7
Release: 0
Group: System/YaST
License: GPL-2.0-only
Expand Down
2 changes: 1 addition & 1 deletion startup/First-Stage/F08-logging
Expand Up @@ -56,7 +56,7 @@ log "\tMaximum log count: $Y2MAXLOGNUM"
# 8.3) Start sampling memory usage data
#---------------------------------------------
log "\tStart sampling memory usage data:"
for WORD in ${Cmdline?}; do
for WORD in ${Cmdline-}; do
case $WORD in MEMSAMPLE=*) MEMSAMPLE=${WORD#MEMSAMPLE=};; esac
done
if [ "$MEMSAMPLE" = 0 ]; then
Expand Down

0 comments on commit 0c41943

Please sign in to comment.