diff options
| author | David Cantrell <dcantrell@redhat.com> | 2010-04-12 13:53:52 -1000 |
|---|---|---|
| committer | David Cantrell <dcantrell@redhat.com> | 2010-04-14 11:01:11 -1000 |
| commit | e455ca085efc7ecf660fa63812f814ebca56ef71 (patch) | |
| tree | ea0abedc9c30712d9b33231ec49b8ed1e9e3adaf | |
| parent | 0e59aa4b9e2209ee637c0a181140e1897e4542e5 (diff) | |
Do not append "rhgb quiet" to s390 boot loader config (#570743)
| -rw-r--r-- | packages.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages.py b/packages.py index ed9ed354c..37d567921 100644 --- a/packages.py +++ b/packages.py @@ -274,7 +274,7 @@ def rpmSetupGraphicalSystem(anaconda): ts = rpm.TransactionSet(anaconda.rootPath) # Only add "rhgb quiet" on non-s390, non-serial installs - if iutil.isConsoleOnVirtualTerminal() and \ + if not iutil.isS390() and iutil.isConsoleOnVirtualTerminal() and \ ts.dbMatch('provides', 'rhgb').count() or \ ts.dbMatch('provides', 'plymouth').count(): anaconda.bootloader.args.append("rhgb quiet") |
