~ubuntu-branches/debian/stretch/resource-agents/stretch

« back to all changes in this revision

Viewing changes to heartbeat/SAPInstance

  • Committer: Bazaar Package Importer
  • Author(s): Martin Loschwitz
  • Date: 2011-08-24 09:32:00 UTC
  • Revision ID: james.westby@ubuntu.com-20110824093200-s8b8oxtn5a9xy3gq
Tags: 1:3.9.2-1
* Package rename due to restructuring from upstream
* Added resource-agents-dev package to hold the important header file
* New upstream release from new repository
* Updated to new Policy version, no changes necessary
* Adapt patches to work with the new upstream version

Show diffs side-by-side

added added

removed removed

Lines of Context:
355
355
  fi
356
356
 
357
357
  # as root user we need the library path to the SAP kernel to be able to call sapcontrol
358
 
  if [ `echo $LD_LIBRARY_PATH | grep -c "^$DIR_EXECUTABLE\>"` -eq 0 ]; then
359
 
    LD_LIBRARY_PATH=$DIR_EXECUTABLE${LD_LIBRARY_PATH:+:}$LD_LIBRARY_PATH
 
358
  if [ "$DIR_EXECUTABLE" ]; then
 
359
    if [ `echo $LD_LIBRARY_PATH | grep -c "^$DIR_EXECUTABLE\>"` -eq 0 ]; then
 
360
       LD_LIBRARY_PATH="$DIR_EXECUTABLE${LD_LIBRARY_PATH:+:$LD_LIBRARY_PATH}"
 
361
       export LD_LIBRARY_PATH
 
362
    fi
360
363
    export LD_LIBRARY_PATH
361
364
  fi
362
365