diff options
author | Noriko Hosoi <nhosoi@redhat.com> | 2005-05-03 01:19:22 +0000 |
---|---|---|
committer | Noriko Hosoi <nhosoi@redhat.com> | 2005-05-03 01:19:22 +0000 |
commit | fc097ca1d263d31d68f63a4135d27ebcaff919ed (patch) | |
tree | 8bd10140cb1d0c3a2a1a86f48b7bc303cb22dbce | |
parent | d75bd4837eb3708692fee716a8859ebebbc203d2 (diff) | |
download | ds-fc097ca1d263d31d68f63a4135d27ebcaff919ed.tar.gz ds-fc097ca1d263d31d68f63a4135d27ebcaff919ed.tar.xz ds-fc097ca1d263d31d68f63a4135d27ebcaff919ed.zip |
[156623] Solaris/HP-UX setup can only be run from the SERVER ROOT
FIX: cd to the SERVER ROOT, first.
-rwxr-xr-x | ldap/cm/newinst/setup.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ldap/cm/newinst/setup.sh b/ldap/cm/newinst/setup.sh index 852efc37..b5c9b6a3 100755 --- a/ldap/cm/newinst/setup.sh +++ b/ldap/cm/newinst/setup.sh @@ -36,6 +36,9 @@ # All rights reserved. # --- END COPYRIGHT BLOCK --- +setupdir=`dirname $0` +cd ${setupdir} + # Configure nsPerl if [ ! -f "./tools/perl" ]; then ./tools/nsPerl5.6.1/install > /dev/null |