summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Fix PPP log reference in status.phpRELENG_2_3jim-p2017-10-031-1/+2
| | | | | (cherry picked from commit 35e5c404ef0d03d40eeac7f5a33f43da0d3ac6fc) (cherry picked from commit 69ed1107fac3c256695d9c1ba4fb684a328a6faa)
* Detect XG-1537Renato Botelho2017-09-261-0/+7
|
* Don't call widget callback function if no data is returnedSteve Beaver2017-09-221-1/+4
|
* Move this file_exists test inside the dpinger status check loop and also ↵jim-p2017-09-141-5/+5
| | | | | | | | | suppress PHP errors from stream_socket_client() Both are done to avoid a race where the status file can be missing and the status check fails, resulting in an alert/crash report. (cherry picked from commit 59104a6ff6c862482eddb9696fd8d22dec89052e) (cherry picked from commit 793dc52dc94978f125d0028da7539cb77dca91f4)
* gateway monitoring, give apinger some time to properly 'initialize' before ↵PiBa-NL2017-09-111-19/+37
| | | | | | using its results (cherry picked from commit 29fa6f0f46ba039a67a93c00a08bcaecc3935b78)
* Enable upload mode when rsync'ing snaps or packagesRenato Botelho2017-08-311-0/+2
|
* Restore bad login messageSteve Beaver2017-08-302-2/+13
|
* Build FRR on 2.3.5 snaps for testingjim-p2017-08-281-0/+1
|
* remove old logo from default pageJared Dillard2017-08-252-1/+0
|
* make css compatible with newer nvd3 versionJared Dillard2017-08-252-3/+3
|
* update top nav bar logoJared Dillard2017-08-253-2/+22
|
* remove image from rss widgetJared Dillard2017-08-252-1/+0
|
* update faviconJared Dillard2017-08-2511-3/+109
|
* Fixed #7811Steve Beaver2017-08-241-2/+2
|
* Fixed #7804Steve Beaver2017-08-241-1/+1
| | | | Replace Math.trunc with Math.floor to make IE happy
* Fix -U optionRenato Botelho2017-08-231-3/+3
|
* Change default to never upload files and add a new option to do itRenato Botelho2017-08-233-17/+17
|
* Captive portal: fix idle times in details popupplumbeo2017-08-231-2/+2
| | | | | | Explicitly cast $idle_time to integer. (cherry picked from commit 07df3494bd9a508e568b4ae999369ec8b2d14ec2)
* Do not exit while running in loop modeRenato Botelho2017-08-221-14/+20
|
* When saving a GIF interface, do not allow the user to enter a subnet ↵jim-p2017-08-221-4/+4
| | | | | | | directly in the address box. The subnet is determined by the "GIF tunnel subnet" drop-down. Fixes #7789 (cherry picked from commit 6d028dc26c129ce1b0b25551142819772664f1e5) (cherry picked from commit c7fd6ec9b196b0d7c37d14dad13f745dab82420d)
* Remove quotes from commandsRenato Botelho2017-08-221-5/+5
|
* Teach build_snapshots.sh to read exit code of build.shRenato Botelho2017-08-221-18/+32
|
* fixed #7795Steve Beaver2017-08-221-5/+5
| | | | | | | By changing var name to no longer conflict with ipsec widget (cherry picked from commit 3ed475b11dfcb2999a71195987495ccf05808127) (cherry picked from commit bc2772c18ef2aa9a32b941fcf79c0c160fad7666)
* If the user chose to have DDNS Hostnames forced, respect that in the backend ↵jim-p2017-08-211-0/+4
| | | | | | | code for static map IPv6 hosts. Fixes #7324 (cherry picked from commit bad77fc0aca53e560710eaa75b3de198d7edb8f3) (cherry picked from commit 50608d158646e32a612f845bcd0dfa91ce37d713)
* Eliminate unused functions from functions.inc.phpSteve Beaver2017-08-211-75/+0
|
* Backport 2.4 getstats format for ease of maintenanceSteve Beaver2017-08-212-59/+5
|
* Fix system information widget display orderSteve Beaver2017-08-211-5/+8
|
* Add a new option to rsync snaps and pkgRenato Botelho2017-08-211-0/+9
|
* Avoid JS error by always rendering mobile ipsec DIV, even if emptySteve Beaver2017-08-201-5/+11
|
* Fixed JSON format in IPSec widet per Kill Bill (Thanks!)Steve Beaver2017-08-191-2/+1
|
* Interfaces menu "(Assign)" -> "Assigments"Steve Beaver2017-08-181-5/+20
| | | | Add support for menu divider bars
* Revise CPU load display to eliminate sleep in AJAX callSteve Beaver2017-08-172-44/+47
|
* No longer experimental so comment removedSteve Beaver2017-08-176-6/+7
|
* Speedup package related calls to get_pkg_info() since now we have a script ↵Renato Botelho2017-08-162-3/+2
| | | | that update metadata periodically
* shaper, hfsc cannot use priority, as such don't show the field in the webgui.PiBa-NL2017-08-161-21/+24
| | | | | | | Also for the other shapers 0 is a valid priority While fairq causes a error loading rules with a priority above 7 so prevent that. (cherry picked from commit 417991954c631fcc33ed3dc38a99ae3efecfea6e)
* Some systems - only one that I am aware of, complain that unbound is ↵marjohn562017-08-163-0/+22
| | | | | | | | | | | | | | | | starting before dchp6 has completed leading to problems, this occurs only on boot. Further examination did indeed show that the problem is caused by unbound starting before the dhcp6c - RTSOLD - rc.newwanipv6 have completed, making sure that these have all run before unbound is allowed to start corrects the problem. In order to fix this I have added a file creation of a file in tmp in rc.newwanipv6, this is the final function when the system is booting and ONLY when the system is booting. In interfaces.inc I have added an unlink_if_exists () of this file, this is a "just in case" catch, should the file have been left behind due to some unforeseen event. The real work is done in services.inc, a section of code has been added that can cause up-to a ten second delay before allowing unbound to start. This is achieved by waiting for the file created by rc.newwanipv6 to exist, once it does exist then the file is deleted, the sleep loop breaks and unbound is allowed to start. If the file does not exist after 10 seconds then the sleep loop exits and unbound can start. Checks are made for the fact that WAN is using Ipv6 and dhcp6, (cherry picked from commit 881fb1867e81cc396277a73e4241f7a47a86a446)
* DOn't automatically update CIDR masks if the selector is disabledSteve Beaver2017-08-161-9/+14
|
* Do not use reference to avoid losing dataRenato Botelho2017-08-161-2/+4
|
* Ignore upgrade_167_to_168() when upgrade_166_to_167() runs, they are both ↵Renato Botelho2017-08-161-0/+2
| | | | the same
* Always run additional_config_upgrade() and do it after config is writtenRenato Botelho2017-08-161-8/+10
|
* Each item in additional_config_upgrade() must write config after changing itRenato Botelho2017-08-161-3/+7
|
* Detect old workarounds in config upgrade and deal with themRenato Botelho2017-08-161-2/+20
|
* Bring upgrade_166_to_167() to 2.3 worldRenato Botelho2017-08-161-1/+39
|
* Move workaround used to enable pkg metadata update cronjob to a generic ↵Renato Botelho2017-08-162-30/+35
| | | | mechanism
* Check if specific config upgrade code already ran and skip itRenato Botelho2017-08-161-7/+20
|
* Add a function to be called every time convert_config() runsRenato Botelho2017-08-162-0/+14
|
* Hide dashboard update period control. No longer needed with central refresh ↵Steve Beaver2017-08-161-6/+6
| | | | system
* Convert firewall logs widget to centralized refresh systemSteve Beaver2017-08-161-20/+34
|
* Revert config version to 15.8 and remove upgrade scriptSteve Beaver2017-08-152-35/+1
|
* Add thermal_sensors.inc file to obsoleted files listSteve Beaver2017-08-151-0/+1
|
OpenPOWER on IntegriCloud