Andrew Geissler | b09463d | 2017-03-24 15:55:17 -0500 | [diff] [blame^] | 1 | #include <cstdlib> |
2 | #include <sdbusplus/bus.hpp> | ||||
3 | #include <phosphor-logging/log.hpp> | ||||
4 | |||||
5 | using namespace phosphor::logging; | ||||
6 | |||||
7 | int main(int argc, char *argv[]) | ||||
8 | { | ||||
9 | log<level::INFO>("Check if host is running"); | ||||
10 | |||||
11 | // Setup Signal Handler | ||||
12 | |||||
13 | // Initiate heartbeat command | ||||
14 | |||||
15 | // Wait for signal | ||||
16 | |||||
17 | // If host running then create file | ||||
18 | |||||
19 | return 0; | ||||
20 | } |