You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
520 B
Bash
13 lines
520 B
Bash
# linux script framework some common macros define
|
|
# Longwei Lai
|
|
###################################################################
|
|
|
|
# server options path, all server options save in here
|
|
____FWK_SVR_OPTIONS_PATH="${SVR_PATH}/.options"
|
|
|
|
# all server option files path define
|
|
____FWK_SVR_DEBUG_OPTION_FILE="${____FWK_SVR_OPTIONS_PATH}/debug_option"
|
|
____FWK_SVR_FAKETIME_OPTION_FILE="${____FWK_SVR_OPTIONS_PATH}/faketime_option"
|
|
____FWK_SVR_FAKETIME_BEGIN_OPTION_FILE="${____FWK_SVR_OPTIONS_PATH}/faketime_begin_option"
|
|
|