-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Mei-Hui Su
authored and
Mei-Hui Su
committed
Dec 13, 2023
1 parent
535a46a
commit e44fcb6
Showing
1 changed file
with
23 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#!/bin/bash | ||
|
||
## this is to run the ssh_generate with proper LD_LIBRARY_PATH and | ||
## DYLD_LIBRARY_PATH that mac os seems to like to eliminate under | ||
## SIP mode | ||
|
||
# Process options | ||
FLAGS="" | ||
CONF="" | ||
|
||
# Pass along all arguments | ||
### location | ||
|
||
if [ "$UCVM_INSTALL_PATH" ] ; then | ||
SCRIPT_DIR="$UCVM_INSTALL_PATH"/bin | ||
else | ||
SCRIPT_DIR="$( cd "$( dirname "$0" )" && pwd )" | ||
fi | ||
|
||
source ${SCRIPT_DIR}/../conf/ucvm_env.sh | ||
${SCRIPT_DIR}/../bin/ssh_generate "$@" | ||
|
||
exit 0 |