verify-uml.sh

来自「ipsec vpn」· Shell 代码 · 共 53 行

SH
53
字号
#!/bin/sh# show me#set -x# fail if any command failsset -ecase $# in    1) OPENSWANSRCDIR=$1; shift;;esacif [ `id -u` = 0 ]then    echo Do not run this as root.    exitfi## configuration for this file has moved to $OPENSWANSRCDIR/umlsetup.sh# By default, that file does not exist. A sample is at umlsetup-sample.sh# in this directory. Copy it to $OPENSWANSRCDIR and edit it.#if [ -z "${OPENSWANSRCDIR}" ] && [ -f umlsetup.sh ]then    OPENSWANSRCDIR=`pwd`fiOPENSWANSRCDIR=${OPENSWANSRCDIR-../..}if [ ! -f ${OPENSWANSRCDIR}/umlsetup.sh ]then    echo No umlsetup.sh. Please read instructions in doc/umltesting.html and testing/utils/umlsetup-sample.sh.    exit 1fi. ${OPENSWANSRCDIR}/umlsetup.shif [ ! -d ${KERNPOOL}/. ]; then echo Your KERNPOOL= is not properly set; exit 1; fi	if [ ! -r ${UMLPATCH} ]; then echo Your UMLPATCH= is not properly set; exit 1; fiif [ -z "${OPENSWANHOSTS}" ]; then echo Your OPENSWANHOSTS= is not properly set; exit 1; fiif [ -z "${NATTPATCH}" ]; then echo Your NATTPATCH= is not properly set; exit 1; fi if [ ! -d ${BASICROOT}/. ]; then echo Your BASICROOT= is not properly set; exit 1; fi    ## $Log: verify-uml.sh,v $# Revision 1.1  2005/07/14 01:37:56  mcr# 	script to check out umlsetup.sh and complain before# 	we get too far.###    

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?