diff options
author | Pavel Raiskup <praiskup@redhat.com> | 2014-10-20 09:10:31 +0200 |
---|---|---|
committer | Pavel Raiskup <praiskup@redhat.com> | 2014-10-20 09:10:31 +0200 |
commit | 42ab13ada931882e9aab25085aed98bb76f970e6 (patch) | |
tree | 66ba8c301c429aac2940d939dda896c5e983c542 /lib_pgsql.sh | |
parent | b0f7b339307050ce5a52c3dfda97aa50a901e5b8 (diff) | |
download | postgresql-setup-tests-42ab13ada931882e9aab25085aed98bb76f970e6.tar.gz postgresql-setup-tests-42ab13ada931882e9aab25085aed98bb76f970e6.tar.xz postgresql-setup-tests-42ab13ada931882e9aab25085aed98bb76f970e6.zip |
lib: lint bash constructs
* lib.sh: Mostly fix double-quoting and back-tick removal.
* lib_pgsql.sh: Likewise.
Diffstat (limited to 'lib_pgsql.sh')
-rw-r--r-- | lib_pgsql.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_pgsql.sh b/lib_pgsql.sh index f1ebe5f..08f8142 100644 --- a/lib_pgsql.sh +++ b/lib_pgsql.sh @@ -35,7 +35,7 @@ dtf_postgresql_checkphase() rlAssertNotExists "/var/lib/pgsql/data/PG_VERSION" - rlAssert0 "run under root user" `id -u` + rlAssert0 "run under root user" "$(id -u)" rlGetPhaseState test $? -gt 0 \ |