1
0
mirror of https://github.com/Yubico/yubikey-val.git synced 2025-01-20 10:52:15 +01:00
yubikey-val/ykval-queuedaemon.php

17 lines
181 B
PHP
Raw Normal View History

2009-12-07 13:33:24 +00:00
<?php
require_once 'ykval-synclib.php';
require_once 'ykval-config.php';
$sl = new SyncLib();
# Loop forever and resync
while (True) {
$sl->reSync(10);
sleep(60);
}
?>