Page MenuHomeDevCentral

Fix entrypoint.sh creating one folder named {plugins,embedded-db}
ClosedPublic

Authored by dereckson on Oct 14 2020, 02:21.
Tags
None
Referenced Files
F37470807: D2372.diff
Mon, Jul 20, 16:56
F37389068: D2372.id5967.diff
Mon, Jul 20, 05:26
Unknown Object (File)
Mon, Jul 20, 00:03
Unknown Object (File)
Sun, Jul 19, 23:34
Unknown Object (File)
Sun, Jul 19, 23:24
Unknown Object (File)
Mon, Jul 13, 05:36
Unknown Object (File)
Wed, Jul 8, 03:54
Unknown Object (File)
Wed, Jul 8, 00:06
Subscribers
None

Details

Summary

To allow spaces in variables like OPENFIRE_DATA_DIR, they have been enclosed
in quotes.

As the expression uses GNU coreutils mkdir {} syntax, put the {} in quotes
has broken the directory creation: instead to create /path/to/openfire/plugins
and /path/to/openfire/embedded-db, it created the exact quoted content.

That breaks new installations when directories don't exist.

This change fixes that regression. This is a follow-up for e76b3cfd9f47.

Test Plan
$ export OPENFIRE_DATA_DIR=/tmp/openfire
$ mkdir -p "${OPENFIRE_DATA_DIR}"/{plugins,embedded-db}
$ ls $OPENFIRE_DATA_DIR
embedded-db  plugins

Diff Detail

Repository
rDO Docker image for Openfire
Lint
Lint Not Applicable
Unit
Tests Not Applicable