Skip to content

Commit

Permalink
Merge f861d78 into 1cc83c0
Browse files Browse the repository at this point in the history
  • Loading branch information
teclator committed Apr 29, 2021
2 parents 1cc83c0 + f861d78 commit cb1d966
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
7 changes: 7 additions & 0 deletions package/yast2-installation.changes
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Apr 29 09:21:31 UTC 2021 - Ladislav Slezák <lslezak@suse.cz>

- Start the "memsample" tool in a subshell to avoid "Terminated"
message displayed at the end (bsc#1184491)
- 4.3.38

-------------------------------------------------------------------
Wed Apr 14 11:08:52 UTC 2021 - Knut Anderssen <kanderssen@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.37
Version: 4.3.38
Release: 0
Group: System/YaST
License: GPL-2.0-only
Expand Down
7 changes: 5 additions & 2 deletions startup/First-Stage/F08-logging
Expand Up @@ -65,7 +65,10 @@ else
if pgrep -f memsample; then
log "\talready running"
else
memsample --sleep="${MEMSAMPLE-5}" --archive=/var/log/YaST2/memsample.zcat &
log "\tPID: $!"
# use a subshell to avoid "Terminated" message when killing the process at the end
(
memsample --sleep="${MEMSAMPLE-5}" --archive=/var/log/YaST2/memsample.zcat &
log "\tPID: $!"
)
fi
fi

0 comments on commit cb1d966

Please sign in to comment.