summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
* Wording fix.Warren Baker2010-10-131-1/+1
|
* Ticket #942. Try to prevent empty entries and use implode to avoid problems.Ermal2010-10-121-2/+8
|
* Resolves #944. Actually bring down the vlan interface if it existed ↵Ermal2010-10-121-1/+1
| | | | previously. This is a regression from the ppp dance/requests/whatever.
* Add backend code to verify username against cn on login if set by user. ↵jim-p2010-10-122-1/+10
| | | | Needs GUI code to set the option yet. Ticket #887
* revert miniupnpd -d changeScott Ullrich2010-10-111-1/+1
|
* Be more verbose with miniupnpd logs. otherwise practically nothing is logged.Scott Ullrich2010-10-111-1/+1
|
* Bail out here if a variable isn't an array like it should be.jim-p2010-10-111-0/+2
|
* Hard-coded pfSense to product_name for Growl alert notifications.Warren Baker2010-10-111-2/+2
|
* Fix text.Erik Fonnesbeck2010-10-101-1/+1
|
* Kill apinger with a large axe until the TERM issues can be resolvedScott Ullrich2010-10-101-0/+4
|
* Cosmetic change from product_website to product_nameWarren Baker2010-10-101-1/+1
|
* Wording fix.Warren Baker2010-10-101-2/+2
|
* Fix the "all dynamic gateways are shown as default" problem reported here: ↵gnhb2010-10-101-1/+1
| | | | | | http://forum.pfsense.org/index.php/topic,28960.0.html A non-empty string will evaluate true with == operator.
* Add function to convert pfsense slice name to product name.jim-p2010-10-071-0/+5
|
* Use mwexec_bg instead of exec to run a service's start command so PHP ↵Erik Fonnesbeck2010-10-051-1/+1
| | | | doesn't hang in the likely event that it spawns a background process.
* Fix racoon.conf generation for localid_type=address. Ticket #936pierrepomes2010-10-051-4/+6
|
* Avoid generating a dynamic gateway entry in the list if there is already one ↵gnhb2010-10-051-1/+2
| | | | in the config for the interface.
* Test if this variable is set before making a reference, for safety. Add ↵jim-p2010-10-051-1/+4
| | | | reference back for speed.
* This one looks safe, and might improve speed. Add it back.jim-p2010-10-051-1/+1
|
* This ref should be safe toojim-p2010-10-051-1/+1
|
* Whoops this reference was good (for speed) and should stay.jim-p2010-10-051-1/+1
|
* More unneeded references.jim-p2010-10-052-5/+5
|
* Remove unneeded reference.jim-p2010-10-051-1/+1
|
* No need for a reference here.jim-p2010-10-051-1/+1
|
* Add contributed patch to allow certain IPsec mobile clients to save Xauth ↵jim-p2010-10-051-0/+3
| | | | passwords. Fixes #933.
* Report dynamic gateways as default even when they are down.gnhb2010-10-051-4/+5
| | | | | If gateways appear to lose their default status when they are down it can be confusing for users. This is purely a UI change.
* Add $g variable to global declaration so we can access it later.gnhb2010-10-051-1/+1
|
* Ticket #931. Check that directory exist before trying to tar up. Do this for ↵Ermal2010-10-042-6/+10
| | | | rrd and dhcpleases scripts used during shutdown.
* Do not use mwexec when unlink can be used and is faster. This also avoids ↵Ermal2010-10-041-2/+2
| | | | errors on log from rm(1).
* Do not try to update dyndns for an interface that no ip can be determined, ↵Ermal2010-10-041-3/+4
| | | | since it will not suceed. Reported-by: http://forum.pfsense.org/index.php/topic,28750.0.html
* Fix checking the status of gateways. Typos and unset variables! Spotted-by: ↵Ermal2010-10-041-1/+2
| | | | Mark Huijgen
* Be sane at what was supposed to be done.:Ermal2010-10-011-1/+1
|
* Do not show statically configured interfaces as with dynamic gateways ↵Ermal2010-10-011-0/+4
| | | | because the gateway is already referenced/monitored on its own entry.
* Better initialize this.Ermal2010-10-011-0/+1
|
* Make sure we do not overwrite the gateway stored in config with a dynamic ↵Ermal2010-10-011-6/+2
| | | | gateway info. Correct POST var name(Found by ghnb). Also correctly reload only the defaultgw interface changed only if it is different than the present one.
* Fix syslog.conf generation. Ticket #929pierrepomes2010-10-011-2/+4
|
* cbuechler says monitorip should not be stored in <interfaces><$if>. See ↵gnhb2010-10-011-5/+1
| | | | ticket #919
* Ticket #921. Actually reconfigure apinger in case of newip event because it ↵Ermal2010-09-301-3/+3
| | | | might impact a previous down event.
* Make this code more readble and clear on what it does.Ermal2010-09-301-7/+6
|
* Remove legacy code for static routes.Ermal2010-09-301-4/+2
|
* Oops fix long standing variable name mistype.Ermal2010-09-301-1/+1
|
* Remove legacy codeErmal2010-09-301-8/+0
|
* Remove support for this legacy code. The upgrade path handles this.Ermal2010-09-301-3/+0
|
* Do not support anymore an ip in the 'gateway' section of an interface.Ermal2010-09-301-3/+1
|
* Don't refer to non-existent variable.gnhb2010-09-301-1/+1
| | | | Reported in forum http://forum.pfsense.org/index.php/topic,28643.0.html
* Define and explain $aliases as a global.jim-p2010-09-281-0/+3
|
* Use a glob here instead of a shell exec.jim-p2010-09-281-3/+1
|
* Carry aliases around as a global so that discover_pkg_rules() can see ↵jim-p2010-09-281-4/+4
| | | | aliases/macros, otherwise package rules that reference aliases/macros will never properly pass verification.
* Test before working on what could be an empty value, otherwise it ends up ↵jim-p2010-09-281-0/+2
| | | | set and causing an unexpected duplication. Fixes duplicate groups when editing users, as reported here: http://forum.pfsense.org/index.php/topic,26612.0.html
* Do not synchronize ip alias. Ticket #882pierrepomes2010-09-261-2/+4
|
OpenPOWER on IntegriCloud