006e4c7057
* add persistence tests T1037.005, T1543.001, T1543.004 * remove manual guid * minor fixes --------- Co-authored-by: kevinmstapleton <kstapleton@octolabs.io> Co-authored-by: Hare Sudhan <code@0x6c.dev>
25 lines
222 B
Bash
Executable File
25 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
|
|
. /etc/rc.common
|
|
|
|
StartService (){
|
|
|
|
ConsoleMessage "Atomic Test T1037.005 - Agent"
|
|
|
|
launchctl load -w /tmp/T1037_005_agent.plist
|
|
|
|
}
|
|
|
|
StopService (){
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
RestartService (){
|
|
|
|
return 0
|
|
|
|
}
|
|
|
|
RunService "$1" |