You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log warn "${underline}Package List Update:${nounderline} Signing key not found. Skipping due to 'rpm --import' failing to import keys, but '--assumeyes' being used will import keys."
1577
1569
return 0
1578
1570
fi
1579
1571
update_sources_error
1580
1572
else
1581
-
true"INFO: No error found in update output, ok."
1582
-
return 0
1573
+
log info "Package List Update: Success."
1583
1574
fi
1584
1575
else
1585
1576
log error "${underline}Package List Update:${nounderline} Non-zero exit code. Stop."
@@ -5203,14 +5194,14 @@ parse_opt() {
5203
5194
if [ "${dev}"="1" ];then
5204
5195
if [ -z"${guest_version}" ];then
5205
5196
log notice "Version Detection: Setting development testing empty software version via '--dev' option."
5206
-
guest_version="17.0.3.4"
5197
+
guest_version="18.0.9.5"
5207
5198
fi
5208
5199
fi
5209
5200
if [ "${dry_run}"="1" ];then
5210
5201
if [ -z"${guest_version}" ];then
5211
5202
log notice "Simulation: commands will be printed but not executed via '--dry-run' option."
5212
5203
log notice "Version Detection: Using simulated software version via '--dry-run' option."
5213
-
guest_version="17.0.3.4"
5204
+
guest_version="18.0.9.5"
5214
5205
fi
5215
5206
fi
5216
5207
if [ "${allow_errors}"="1" ];then
@@ -5238,13 +5229,27 @@ parse_opt() {
5238
5229
## Bash supports process substitution and saving xtrace to a file, which is a
5239
5230
## simpler way to log to file and console.
5240
5231
log_term_and_file() {
5241
-
local temp_folder xtrace_fifo
5232
+
local temp_folder xtrace_fifo tty_output
5233
+
5234
+
tty_output=''
5235
+
## global console_write_command
5236
+
if tty_output="$(tty 2>&1)";then
5237
+
console_write_command=( 'tee''--''/dev/tty' )
5238
+
log info "Terminal: 'tty' connected: 'yes' (console_write_command: '${console_write_command[*]}')"
0 commit comments