Use correct argument order in truorfalse for USE_JOURNAL
truorfalse function from common-functions accepts default as the first parameter. The arguments for USE_JOURNAL were mixed up and this commit restores correct order. Change-Id: Id3621b0e1910a625d6cfb8e81bd27bea82543ae9
This commit is contained in:
@@ -615,7 +615,7 @@ function setup_systemd_logging {
|
||||
# native systemd path, which provides for things like search on
|
||||
# request-id. However, there may be an eventlet interaction here,
|
||||
# so going off for now.
|
||||
USE_JOURNAL=$(trueorfalse USE_JOURNAL False)
|
||||
USE_JOURNAL=$(trueorfalse False USE_JOURNAL)
|
||||
local pidstr=""
|
||||
if [[ "$USE_JOURNAL" == "True" ]]; then
|
||||
iniset $conf_file $conf_section use_journal "True"
|
||||
|
||||
Reference in New Issue
Block a user