// Declare the supported options.
_desc.add_options()
("help", "produce help message")
- ("config,c", po::value<std::string>()->default_value("/etc/gssmd/gssmd.conf"), "config file location")
+ ("config,c", po::value<std::string>()->default_value("/etc/ssmd/ssmd.conf"), "config file location")
("daemon,d", "daemonize after start")
- ("debug", "gssmd debugging")
+ ("debug", "ssmd debugging")
("log-file", po::value<std::string>(), "log file location")
("pid-file", po::value<std::string>(), "PID file location")
("switch-sync-interval,s", po::value<time_t>(), "switch synchronization interval")
("down-profile-id", po::value<unsigned>(), "switch's download profile id")
("max-acl-per-pdu", po::value<size_t>(), "maximum ACL's per PDU")
("data-url", po::value<std::string>(), "data access URL")
- ("version,v", "show gssmd version and exit")
+ ("version,v", "show ssmd version and exit")
;
}