-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
None
-
Affects Version/s: None
-
Component/s: None
-
None
NOTE: This bug report is for Confluence Server. Using Confluence Cloud? See the corresponding bug report.
The startup script uses pushd and popd, which may not port to all systems. A fix is included below:
before:
pushd $SOMEDIR
do_something
popd
after:
PUSHED_DIR=`pwd`
cd $SOMEDIR
do_something
cd $PUSHED_DIR
- is cloned from
-
JRASERVER-25939 Changes to JIRA's startup script assume bash - ie not compatible with Ubuntu
-
- Closed
-
- relates to
-
CONFCLOUD-23557 Startup script requires BASH -- must be sh compatible for Ubuntu
-
- Closed
-