From c0644f39a47958a416a82f10f1091d07fec97896 Mon Sep 17 00:00:00 2001 From: Kirill Zaitsev Date: Wed, 24 May 2017 13:00:47 +0300 Subject: [PATCH] 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 --- functions | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions b/functions index 52a82faf0a..d3a2b5104f 100644 --- a/functions +++ b/functions @@ -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"