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
#!/bin/bash | |
# this script queries client IP from DB and pushes to client | |
LOG_FILE=$0.log | |
# env | |
# CLIENT_NAME=$2 | |
CLIENT_NAME=$common_name | |
CLIENT_CONFIG_FILE=$1 |
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
description "OpenVPN service instance" | |
author "C.c <[email protected]>" | |
stop on runlevel [016] | |
respawn | |
instance $CONFIG_FILE |
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
STRUCT(KT_TEST_CONTEXT) | |
{ | |
CHAR *CurrentCase; | |
INT AssertionsCount; | |
INT FailCount; | |
}; | |
static KT_TEST_CONTEXT TestContext; | |
VOID KtAssert(BOOL Condition, CHAR *FailMessage, INT Line) |