GitHub user lkiesow opened a pull request:
https://github.com/apache/karaf/pull/160
KARAF-4374, Fix problems in Karaf start script
This commit fixes most of the problems pointed out by shellcheck [1] in
the karaf start script (bin/karaf). These include:
- Properly quote variables to prevent spaces from breaking the script
- Ensure that KARAF_HOME is set for commands which would otherwise try
to delete parts of the root file system. E.g: `rm -rf "$KARAF_HOME/lib"`
- Use only $(..) instead of both $(...) and \`...\`
- Require bash since not all commands are posix compliant anyway.
[1] http://shellcheck.net
You can merge this pull request into a Git repository by running:
$ git pull https://github.com/lkiesow/karaf start-script
Alternatively you can review and apply these changes as the patch at:
https://github.com/apache/karaf/pull/160.patch
To close this pull request, make a commit to your master/trunk branch
with (at least) the following in the commit message:
This closes #160
----
commit 700c8a15fe11f5f5d420eed826eec4caa5530a98
Author: Lars Kiesow <[email protected]>
Date: 2016-03-02T15:34:07Z
Fix problems in Karaf start script
This commit fixes most of the problems pointed out by shellcheck [1] in
the karaf start script (bin/karaf). These include:
- Properly quote variables to prevent spaces from breaking the script
- Ensure that KARAF_HOME is set for commands which would otherwise try
to delete parts of the root file system. E.g:
rm -rf "$KARAF_HOME/lib"
- Use only $(..) instead of both $(...) and `...`
- Require bash since not all commands are posix compliant anyway.
[1] http://shellcheck.net
Signed-off-by: Lars Kiesow <[email protected]>
----
---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---