-
Type:
Bug
-
Resolution: Fixed
-
Priority:
Low
-
Component/s: None
-
None
NOTE: This bug report is for Confluence Cloud. Using Confluence Server? 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 related to
-
CONFSERVER-23557 Startup script requires BASH -- must be sh compatible for Ubuntu
-
- Closed
-