diff options
author | Scott Ullrich <sullrich@pfsense-org.local> | 2009-08-24 17:47:19 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense-org.local> | 2009-08-24 17:47:53 -0400 |
commit | 83eb45678f289484309c8d693959e674ab22e1e6 (patch) | |
tree | 6a4265c5f486ca52e7364651e2346d6576b6ed4a | |
parent | 3f9a98c1afab18a66900e5e84c9d893d67bfe7e6 (diff) | |
download | pfsense-83eb45678f289484309c8d693959e674ab22e1e6.zip pfsense-83eb45678f289484309c8d693959e674ab22e1e6.tar.gz |
Note when openNTPD is starting. Resolves #42
-rw-r--r-- | etc/inc/system.inc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/etc/inc/system.inc b/etc/inc/system.inc index 32910dd..3939471 100644 --- a/etc/inc/system.inc +++ b/etc/inc/system.inc @@ -969,6 +969,9 @@ function system_ntp_configure() { /* start opentpd, set time now and use /var/etc/ntpd.conf */ exec("/usr/local/sbin/ntpd -s -f {$g['varetc_path']}/ntpd.conf"); + + // Note that we are starting up + exec("echo 'OpenNTPD is starting up' >> {$g['varlog_path']}/ntpd.log"); } |