1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-02-17 21:54:18 +01:00

Added help description to sync daemon

This commit is contained in:
Olov Danielson 2010-01-10 17:31:06 +00:00
parent 10d6f5e4ec
commit 199296c91f

View File

@ -25,6 +25,14 @@ if ($argc==2 && strcmp($argv[1], "install")==0) {
}
}
if ($argc==2 && strcmp($argv[1], "help")==0) {
echo "\nUsage:\n\n";
echo $argv[0] . " install \t- Installs start scripts for daemon\n";
echo $argv[0] . " \t- Starts sync daemon\n";
echo "\n";
exit();
}
System_Daemon::start(); // Spawn Deamon!
/* Application start */