blob: 6dab9cbcc76cd5d001115414b00331ca5eedd7bd [file] [log] [blame]
Andrew Geisslerb09463d2017-03-24 15:55:17 -05001#include <cstdlib>
2#include <sdbusplus/bus.hpp>
3#include <phosphor-logging/log.hpp>
4
5using namespace phosphor::logging;
6
7int 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}