From 42d8a3c17b83a82952e304f8ce209692d60c1ad0 Mon Sep 17 00:00:00 2001 From: Tyler Christiansen Date: Sun, 3 Nov 2013 22:18:45 -0800 Subject: [PATCH] update install docs to include notice about daily updates --- doc/INSTALL.md | 11 +++++++++++ doc/INSTALL_RHEL.md | 12 ++++++++++++ 2 files changed, 23 insertions(+) diff --git a/doc/INSTALL.md b/doc/INSTALL.md index d88abd3f0b..edca1b67cc 100644 --- a/doc/INSTALL.md +++ b/doc/INSTALL.md @@ -107,3 +107,14 @@ Create the cronjob cp librenms.cron /etc/cron.d/librenms +### Daily Updates ### + +LibreNMS performs daily updates by default. At 00:15 system time every day, a `git pull --no-edit --quiet` is performed. You can override this default by editing your `config.php` file. Remove the comment (the `#` mark) on the line: + + #$config['update'] = 0; + +so that it looks like this: + + $config['update'] = 0; + + diff --git a/doc/INSTALL_RHEL.md b/doc/INSTALL_RHEL.md index 635354146e..34ce98c777 100644 --- a/doc/INSTALL_RHEL.md +++ b/doc/INSTALL_RHEL.md @@ -121,3 +121,15 @@ Create the cronjob cp librenms.cron /etc/cron.d/librenms +### Daily Updates ### + +LibreNMS performs daily updates by default. At 00:15 system time every day, a `git pull --no-edit --quiet` is performed. You can override this default by edit +ing your `config.php` file. Remove the comment (the `#` mark) on the line: + + #$config['update'] = 0; + +so that it looks like this: + + $config['update'] = 0; + +