summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Move users to 2.3.4 when it's availableRELENG_2_3_3Renato Botelho2017-05-041-2/+2
|
* Encode hostname and other output for DHCP lease status. Fixes #7497jim-p2017-04-261-20/+20
|
* Always add the CN as the first SAN when creating a certificate in the GUI or ↵jim-p2017-04-262-4/+16
| | | | an automatic GUI self-signed certificate. Per RFC 2818, relying on the CN to determine the hostname is deprecated, SANs are required. Chrome 58 started enforcing this requirement. Fixes #7496
* Fix #7493 only check interface IP if staticPhil Davis2017-04-251-2/+2
| | | | (cherry picked from commit 8c6190e82f83a7907ec2757e72d9a8eac496dd61)
* Avoid invalid arg error when saving WoL widgetPhil Davis2017-04-251-2/+4
| | | | | when there are no WoL entries (cherry picked from commit 66a5b767b1b533f6ce508a125404a2d8e3353c41)
* Remove redundant check, get_pkg_info() call uses a parameter to return only ↵Renato Botelho2017-04-191-5/+0
| | | | installed packages
* Fix installation of extra packages at build time relaxing check for running ↵Renato Botelho2017-04-191-5/+5
| | | | PHP instance and moving it to the top before any require_once() attempt runs
* Fix indent and spacesRenato Botelho2017-04-191-24/+49
|
* Use correct function (is_pkg_installed) and unbreak get_pkg_info()Renato Botelho2017-04-191-2/+2
|
* Do not sign core repo when resuming buildRenato Botelho2017-04-181-0/+1
|
* Use pkg binary from target system and not from hostRenato Botelho2017-04-181-1/+1
|
* Enable HYPERSCAN option for suricataRenato Botelho2017-04-101-1/+1
|
* start sending files direct to NFS1Renato Botelho2017-04-101-1/+1
|
* Revert "Change destination of stable packages"Renato Botelho2017-04-061-2/+2
| | | | This reverts commit 44aa913b92a0415f0fc26194ff74d3c6803693e3.
* Revert "Keep sending files to files01 and files02 for now"Renato Botelho2017-04-061-1/+1
| | | | This reverts commit e200d7e439cf734f811c078536362fc672a2ee6d.
* Keep sending files to files01 and files02 for nowRenato Botelho2017-04-061-1/+1
|
* Change destination of stable packagesRenato Botelho2017-04-061-2/+2
|
* add validation via validate_ipv4_list to interfaces.inclukehamburg2017-04-041-1/+1
|
* Adds ability to ignore DHCP offers from multiple serverslukehamburg2017-04-042-3/+25
| | | | | | | | | | - Forum thread: https://forum.pfsense.org/index.php?topic=124046.msg705100#msg705100 - related dhclient source: https://github.com/pfsense/FreeBSD-src/blob/devel/sbin/dhclient/clparse.c#L945 **changed files:** /usr/local/www/interfaces.php /etc/inc/interfaces.inc
* vslb.inc - Add missing include, use sigkillbyname()doktornotor2017-04-031-2/+3
|
* Typo fixdoktornotor2017-04-031-1/+1
|
* Disallow IPv6 for RADIUS server.doktornotor2017-04-031-0/+7
| | | See https://redmine.pfsense.org/issues/4154. No need for users to waste their time with debugging packets black hole.
* Add QinQ interfaces to the list of interfaces not to check (Bug #4669)doktornotor2017-04-031-1/+1
|
* Remove dummy config_lock() and config_unlock() functionsdoktornotor2017-04-031-7/+0
| | | Been no-op for ages (https://github.com/pfsense/pfsense/commit/0027de0a544438f146cfc94f005fd6f4ba9f94d7).
* Remove useless config_lock()/config_unlock() callsdoktornotor2017-04-031-2/+0
|
* Redmine #7435 Fix edit problems due to POST id codePhil Davis2017-03-284-13/+22
|
* Enable Netgate Coreboot Upgrade buildRenato Botelho2017-03-271-0/+1
|
* Refactor is_port_or functionsPhil Davis2017-03-271-6/+9
| | | | (cherry picked from commit fe108b671d09cf34a11270e286dcd4c4ce1c0597)
* Add underscores to is_port* function namesPhil Davis2017-03-2710-25/+25
| | | | (cherry picked from commit 593e9fe32d2959cd823fe5da55714ccfb9a0e958)
* Merge pull request #3672 from phil-davis/handle-empty-port-alias-RELENG_2_3_3Renato Botelho2017-03-276-27/+64
|\
| * Redmine #7428 Hanlde empty port aliasPhil Davis2017-03-261-10/+28
| |
| * Refactor filter_generate_nested_aliasPhil Davis2017-03-261-9/+18
| |
| * Provide functions for checking port range alias combinationsPhil Davis2017-03-266-8/+18
| |
* | Correct definition of ports for SMB used by the shaper wizard. Fixes #7434jim-p2017-03-271-1/+1
|/
* Fix handling of port ranges in this validation test. Ticket #7421jim-p2017-03-241-2/+6
|
* Show the button to reset CARP demotion status even when the value is ↵jim-p2017-03-241-8/+7
| | | | negative, and change the reset code to accommodate. Also fixup text in that dialog. Fixes #7424
* File a notice and omit rule(s) using a missing port alias. Fixes #7421jim-p2017-03-231-0/+10
|
* Fix display of BIOS only on Sytem Info widgetPhil Davis2017-03-231-0/+1
|
* Show BIOS information in the system info widget, if it exists in kenv.jim-p2017-03-231-0/+28
|
* Merge pull request #3666 from phil-davis/sysinfo-widget-all-button-RELENG_2_3_3Steve Beaver2017-03-221-4/+2
|\
| * System Info Widget enable All button when disable firmware check is setPhil Davis2017-03-211-4/+2
| | | | | | | | | | | | | | If system firmware disablecheck is set, then the click event for the filter "All" button is also not included in the JS, so the "All" button is not effective. The setTimeout for systemStatusGetUpdateStatus() can be moved up just below where it is declared and inside the existing "if" that conditionally includes that function - no need for it to be inside events.push Then the PHP condition around events.push can be removed, so that the "All" button will always be effective.
* | Merge pull request #3664 from phil-davis/gw-widget-RELENG_2_3_3Steve Beaver2017-03-211-46/+120
|\ \ | |/ |/|
| * Fix #7317 Widget Filter All button gateways widget RELENG_2_3Phil Davis2017-03-211-1/+1
| |
| * Reduce numeric precision in gateways widget to single decimal place (Feature ↵doktornotor2017-03-211-2/+2
| | | | | | | | #6841)
| * Further internationalizationSteve Beaver2017-03-211-1/+1
| |
| * Add missing internationalizationSteve Beaver2017-03-211-1/+1
| |
| * Revise gateway widget config formPhil Davis2017-03-211-16/+38
| |
| * Allow hiding of gateways in Gateways WidgetPhil Davis2017-03-211-44/+96
|/ | | | | | | | | Sometimes there are gateways that I do not care about, so it is handy to be able to save some space on the dashboard by hiding them. This uses similar code structure taken from service_status widget. I made the Save and Clear buttons and all that stuff use the same styles also. I guess that the way it was all done in the Services widget is the more "modern" way.
* Don't process empty anchors as it could lead to flushing more than intended ↵jim-p2017-03-161-0/+4
| | | | when cleaning up after relayd. Fixes #7396
* Run custom deinstall commands during the deinstall phase instead of ↵jim-p2017-03-161-1/+1
| | | | post-deinstall, otherwise they will never get run. Fixes #7401
OpenPOWER on IntegriCloud