X-Git-Url: https://git.ralfj.de/dyn-nsupdate.git/blobdiff_plain/88af7a47fc7194a1bd4c699f1da55e86f4576dec..a290d7b823969913163af6afe07232456ea3dadb:/dyn-nsupdate.cpp diff --git a/dyn-nsupdate.cpp b/dyn-nsupdate.cpp index e378082..745595d 100644 --- a/dyn-nsupdate.cpp +++ b/dyn-nsupdate.cpp @@ -1,37 +1,16 @@ #include +#include + #include #include -#include +using namespace boost::property_tree; -int main(int argc, const char **argv) +int main(int, const char **) { - if (argc < 2) { - std::cerr << "Usage: " << argv[0] << " " << std::endl; - return 1; - } - const char *filename = argv[1]; - - struct stat file_stat; - int ret = lstat(filename, &file_stat); - if (ret != 0) { - std::cerr << "Unable to stat " << filename << "." << std::endl; - return 1; - } - /* Check if the file is suited */ - if (!S_ISREG(file_stat.st_mode)) { - std::cerr << filename << " is not a file." << std::endl; - return 1; - } - if (file_stat.st_uid != geteuid()) { - std::cerr << filename << " must be owned by user executing " << argv[0] << "." << std::endl; - return 1; - } - if (file_stat.st_mode & (S_IWGRP | S_IWOTH)) { /* can be written by group/others */ - std::cerr << filename << " must not be writeable by group or others." << std::endl; - return 1; - } + ptree config; + ini_parser::read_ini(CONFIG_FILE, config); - std::cout << "Hi world!" << std::endl; + std::cout << "Hi world! " << CONFIG_FILE << std::endl; return 0; }