Project

General

Profile

Bug #31779

Updated by Ewoud Kohl van Wijngaarden over 4 years ago

Cloned from https://bugzilla.redhat.com/show_bug.cgi?id=1920036  

 *Description of problem:* 
 <pre> 
 satellite-installer --enable-foreman-plugin-rh-cloud --foreman-proxy-plugin-remote-execution-ssh-install-key true --verbose-log-level 
 2021-01-25 15:33:17 [NOTICE] [pre_migrations] Executing hooks in group pre_migrations 
 2021-01-25 15:33:17 [NOTICE] [pre_migrations] All hooks in group pre_migrations finished 
 2021-01-25 15:33:17 [NOTICE] [boot] Executing hooks in group boot 
 2021-01-25 15:33:17 [NOTICE] [boot] All hooks in group boot finished 
 2021-01-25 15:33:17 [NOTICE] [init] Executing hooks in group init 
 2021-01-25 15:33:17 [NOTICE] [init] All hooks in group init finished 
 2021-01-25 15:33:17 [NOTICE] [root] Loading default values from puppet modules... 
 2021-01-25 15:33:25 [NOTICE] [root] ... finished 
 2021-01-25 15:33:25 [NOTICE] [pre_values] Executing hooks in group pre_values 
 2021-01-25 15:33:25 [NOTICE] [pre_values] All hooks in group pre_values finished 
 2021-01-25 15:33:27 [NOTICE] [pre_validations] Executing hooks in group pre_validations 
 2021-01-25 15:33:28 [NOTICE] [pre_validations] All hooks in group pre_validations finished 
 2021-01-25 15:33:28 [NOTICE] [root] Running validation checks 
 2021-01-25 15:33:28 [NOTICE] [pre_commit] Executing hooks in group pre_commit 
 Package versions are locked. Continuing with unlock. 
 2021-01-25 15:33:34 [NOTICE] [pre_commit] All hooks in group pre_commit finished 
 2021-01-25 15:33:34 [NOTICE] [pre] Executing hooks in group pre 
 2021-01-25 15:33:41 [NOTICE] [pre] All hooks in group pre finished 
 2021-01-25 15:33:41 [NOTICE] [configure] Starting system configuration. 
   The total number of configuration tasks may increase during the run. 
   Observe logs or specify --verbose-log-level to see individual configuration tasks. 
 ... 
 </pre> ~~~ 

 One might expect to run the command like which works but doesn't do anything different: 
 <pre> 
 # foreman-installer satellite-installer --enable-foreman-plugin-rh-cloud --foreman-proxy-plugin-remote-execution-ssh-install-key true --verbose-log-level 
 </pre> 

 The level needs to be specified: 
 <pre> 
 # foreman-installer satellite-installer --full-help | grep verbose 
     -v, --[no-]verbose              Display log on STDOUT instead of progressbar (default: true) 
     -l, --verbose-log-level LEVEL Log level for verbose mode output (default: "notice") 
 </pre> 

 For example: 
 <pre> 
 # foreman-installer satellite-installer --enable-foreman-plugin-rh-cloud --foreman-proxy-plugin-remote-execution-ssh-install-key true --verbose-log-level debug 
 </pre> 

 


 *Version-Release number of selected component (if applicable):* 
 Foreman 2.3 Satellite 6.9 

 *How reproducible:* 
 100% 


 *Actual results:* 
 Using the parameter as proposed does nothing 

 *Expected results:* 
 Adding something like: 
 <pre> ~~~ 
 The total number of configuration tasks may increase during the run. 
   Observe logs or specify --verbose-log-level <LEVEL> to see individual configuration tasks. 
 </pre> ~~~ 

 *Additional info:*

Back