mirror of
https://github.com/webmin/webmin.git
synced 2026-02-08 00:12:14 +00:00
14 lines
241 B
Perl
Executable File
14 lines
241 B
Perl
Executable File
#!/usr/local/bin/perl
|
|
# sync.pl
|
|
# Sync with a time server, from cron
|
|
|
|
$no_acl_check++;
|
|
require './time-lib.pl';
|
|
|
|
$err = &sync_time($config{'timeserver'}, $config{'timeserver_hardware'});
|
|
if ($err) {
|
|
print STDERR $err;
|
|
exit(1);
|
|
}
|
|
exit(0);
|