summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Add cas(4)jim-p2011-03-071-1/+1
|
* When doing conf_mount_ro/rw on NanoBSD, pass sync,noatime to mount to ↵jim-p2011-03-071-6/+6
| | | | preserve the options we have already set in fstab. Ticket #1279 and Ticket #444
* Add missing pages to the authentication system.Ermal2011-03-041-1/+13
|
* Be smart and remove the needs package sync toggle since the begining ↵Ermal2011-03-041-0/+2
| | | | otherwise not behaving packages might mess up the whole thing.
* Oops more make code correct.Ermal2011-03-041-2/+2
|
* Oops make code correct.Ermal2011-03-041-1/+1
|
* * Prevent concurrent logins on CP to not be recorded on the DB.Ermal2011-03-041-90/+83
| | | | | | | * Make the locking more complex to avoid locking exclusively during pruning task which would hurt a lot CP performance. * Retire the disconnect_client and make all the disconnect functions use the sessionid as identifier. All this was triggered by: http://forum.pfsense.org/index.php/topic,33879.0.html
* If the interface triggering rc.newwanip is not assigned just reload packages ↵Ermal2011-03-041-5/+16
| | | | and the filter and exit.
* Check if the protocol is empty, not just if it's set. Fixes #1323jim-p2011-03-041-1/+1
|
* Only change protocol if it's set and not empty.jim-p2011-03-041-1/+2
|
* Add upgrade code to ensure rule protocols are all lower case.jim-p2011-03-032-1/+8
|
* Make this lowercase before checking, or people who ended up with TCP or UDP ↵jim-p2011-03-031-0/+1
| | | | in their config might end up with rules that have no port specified, leaving them a bit more open than expected.
* Not needed anymore.Ermal2011-03-031-5/+1
|
* lower limit to 101 MBChris Buechler2011-03-031-1/+1
|
* Simplify is_macaddr regex.Erik Fonnesbeck2011-03-021-1/+1
|
* Slight regex fix on is_macaddr - the previous regex was letting through a ↵jim-p2011-03-021-1/+1
| | | | mac without : separators, leading to improper validation and potentially invalid dhcp configs. Seen here http://forum.pfsense.org/index.php/topic,33830.0.html
* Attempt to mitigate fork bombs of rc.newipsecdns. Alternatively we should ↵smos2011-03-021-0/+4
| | | | | | probably bail out with a exit(0); instead.
* Always write out the filterdns-ipsec.hosts file, otherwise deleted tunnels ↵smos2011-03-021-15/+15
| | | | | | will never get removed from the filterdns-ipsec.hosts
* Make it possible to turn off successful login messages, this should quiet ↵smos2011-03-021-1/+3
| | | | the console, system logs
* Add a check that should prevent configuration of racoon with duplicate phase ↵smos2011-03-021-1/+4
| | | | 1 IP entries.
* Since its only called during bootup there is no need to do conditionals ↵Ermal2011-03-021-10/+5
| | | | here. Always sync config and start the miniupnpd process.
* Pass the -a parameters to pgrep to be certain we search ancestors as well. ↵Ermal2011-03-015-7/+7
| | | | The side effects might be inoquos from the pfSense context.
* Declare $g a global here.jim-p2011-02-261-0/+1
|
* Ensure the pkg staging area exists on nanobsd before trying to use it.jim-p2011-02-262-3/+9
|
* missing $Scott Ullrich2011-02-251-1/+1
|
* missing $Scott Ullrich2011-02-251-1/+1
|
* misc whitespace cleanupsScott Ullrich2011-02-251-3/+1
|
* Give this another shotScott Ullrich2011-02-251-1/+1
|
* Fix admins group permission setting when upgrading from 1.2.3.jim-p2011-02-251-1/+1
|
* Correct IPsec carp interface upgrade code, off by onesmos2011-02-251-1/+1
|
* Use full path to pwjim-p2011-02-241-2/+2
|
* Add missing _relayd group, and when upgrading from 1.2.3, add _relayd group ↵jim-p2011-02-242-0/+3
| | | | and user.
* Fix find again... apparently -xdev is depreciated and tosses errors, ↵jim-p2011-02-241-1/+1
| | | | replaced by -x
* Move this code up a bit and also use /root/tmp to fetch packages instead of ↵jim-p2011-02-241-5/+10
| | | | /tmp so it won't fill up.
* If we're on nanobsd, pass -t to pkg_add to specify a different "staging ↵jim-p2011-02-242-4/+8
| | | | area" path.
* Correct the vlan upgrade code to continue when we fixed up the interfacesmos2011-02-241-2/+4
|
* Correct the find command, pipe into xargssmos2011-02-241-1/+1
|
* And one more place for PKG_TMPDIR... just in case.jim-p2011-02-231-1/+3
|
* Set PKG_TMPDIR here too, to help nanobsd pkg installs.jim-p2011-02-231-1/+3
|
* Allow queues on top of bridge. Though more investigation is needed on its ↵Ermal2011-02-231-1/+1
| | | | correct meaning.
* Set PKG_TMPDIR for embedded/nano because it will fill up /var trying to ↵jim-p2011-02-231-0/+2
| | | | download packages otherwise. (From sullrich)
* Merge branch 'master' of rcs.pfsense.org:pfsense/mainlinegnhb2011-02-242-5/+11
|\
| * Correct the config path to the vip arraysmos2011-02-231-1/+1
| |
| * Attempted fix that should convert the old carp[$i] naming to vip[$vhid]smos2011-02-231-0/+5
| |
| * Make sure we iterate by the vlan number lest we end up with a empty ↵smos2011-02-231-3/+4
| | | | | | | | variable? Hopefully fix new vlan name not being assigned to interfaces section
| * Correct the gateway group member name to the correct GW_". strtoupper($if) ↵smos2011-02-231-1/+1
| | | | | | | | | | | | uppercase. This fixes outbound load balancer pools upgraded from 1.2.3 not working
| * Do not cross filesystem boundaries when removing files lest we empty Seth' ↵smos2011-02-231-1/+1
| | | | | | | | USB stick
* | Try again, a little cleaner: Prevent GUI from giving error for freeDNS ↵gnhb2011-02-241-1/+1
|/ | | | service since username and password
* Update "Last Tested" date for freeDNS in commentsgnhb2011-02-231-1/+1
|
* Don't consider a cert as in use by the GUI if it's in HTTP mode. Fixes #1171jim-p2011-02-221-1/+2
|
OpenPOWER on IntegriCloud