summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | In order for miniupnpd to latch onto IPv6, we just need to give the ↵jim-p2012-08-021-2/+1
|/ | | | interface name here, not the subnet. The daemon is smart enough to latch onto the right subnet(s) here anyhow.
* Merge pull request #200 from phil-davis/masterSeth Mos2012-08-021-0/+1
|\ | | | | require filter.inc so filter_configure is defined
| * require filter.inc so filter_configure is definedPhil Davis2012-08-021-0/+1
|/ | | | | The "renew" button on a DHCP connection ends up calling function interface_dhcpv6_configure() in interfaces.inc, which in turn calls filter_configure() (in filter.inc) but gives the error: Fatal error: Call to undefined function filter_configure() in /etc/inc/interfaces.inc on line 3350 See forum post: http://forum.pfsense.org/index.php/topic,52046.0.html
* Merge pull request #199 from phil-davis/masterErmal Luçi2012-08-021-0/+2
|\ | | | | Tidy package cleanup output
| * Tidy package cleanup outputPhil Davis2012-08-021-0/+2
|/ | | | Add a "done." and newline after "Cleaning up..." Then when output is going to the serial console the next line will start cleanly and %age figures will not write over the top of "Clean".
* Merge pull request #198 from phil-davis/masterSeth Mos2012-08-021-2/+8
|\ | | | | Tidy up percentage logging to console
| * Tidy up percentage logging to consolePhil Davis2012-08-021-2/+8
|/ | | | | When on the console, the code only intended to update the percentage downloaded every 10%. Due to string-and-int type differences, the test was not working, all percentages were being logged. This is fixed. Also, add a newline after 100% - then whatever outputs next gets a clean start on a new line of output. Tidies up the console output during a post-firmware-upgrade package install.
* Ensure this gets a set default value or things can breakjim-p2012-08-011-0/+3
|
* Protect against a potential infinite loop here.jim-p2012-08-011-1/+2
|
* Correct variable name. Fixes #2571jim-p2012-08-011-1/+1
|
* Silence tar command to not garble consoleErmal2012-08-011-5/+5
|
* To not clobber the console add \r when outputing status information on consoleErmal2012-08-011-20/+20
|
* Correct mod_evasive setting per CP to confirm to what the CP page ↵Ermal2012-08-011-3/+4
| | | | description says. Resolves #2270
* Refine testErmal2012-08-011-3/+3
|
* Do some cleanup of code for zonesErmal2012-08-011-14/+9
|
* Correct generation of lighty config for CP now that zone is passed as parameterErmal2012-08-011-35/+16
|
* Merge pull request #196 from mtharp/dhcpv6-relayErmal Luçi2012-07-312-14/+17
|\ | | | | Get DHCPv6 relay working (#1663)
| * Fix dhcpv6_relay writing to the dhcpv4 configurationMichael Tharp2012-07-301-4/+4
| | | | | | | | Implements ticket #1663
| * Construct the arguments to dhcrelay -6 correctlyMichael Tharp2012-07-301-10/+13
| | | | | | | | Implements ticket #1663
* | Try to keep existing files rather than unlinking/replacing when restoring ↵jim-p2012-07-311-2/+2
| | | | | | | | the package libraries during a package removal. Needs some testing, but for NanoBSD it fixes #1049
* | Unlock on returnErmal2012-07-311-0/+2
| |
* | There is no need to remove the @ from function names. Also properly unlock ↵Ermal2012-07-311-27/+27
| | | | | | | | in case of exception. Size is constant and we know it no need for extra call to shmop. Put some more error checking just in case
* | Merge pull request #195 from phil-davis/masterSeth Mos2012-07-311-3/+3
|\ \ | | | | | | Don't conf_mount_rw every time packages are listed
| * | Don't conf_mount_rw every time packages are listedPhil Davis2012-07-311-3/+3
|/ / | | | | | | Every time System:Packages is selected, the code does a conf_mount_rw, checks for existence of some dirs, then does conf_mount_ro. This makes navigating the package install GUI slow on nanobsd, and it is not needed. Do is_dir checks first, then conf_mount_rw only if they need to be created. The is_dir function works fine on a read-only filesystem.
* | Merge pull request #194 from phil-davis/masterSeth Mos2012-07-311-13/+30
|\ \ | |/ |/| Make acces to shared memory atomic
| * Make access to shared memory atomicPhil Davis2012-07-311-13/+30
|/ | | | Use lock and unlock to make sure that all incrementing and decrementing of the reference count in the shared memory section is atomic. This ensures that there are not unusual timing conditions that could see 2 callers trying to update the reference count at the same time, which could result in the count never returning to zero. If that happened, then the filesystems would never be restored to read-only. (this is really just relevant to nanobsd) (note that shmop_* calls in php do not do any locking themselves - callers must coordinate their own access to the shared memory section) I also made the number stored in the shared memory be an ordinary integer followed by null chars to pad out the rest of the shared memory section. This makes the numbers stored look normal, and ensures that there is no other rubbish left in memory after them to cause problems on reading.
* Fix negative testjim-p2012-07-301-2/+2
|
* Pad data when adding to refcount reference, to avoid some oddities with how ↵jim-p2012-07-301-2/+2
| | | | php handles such data. http://forum.pfsense.org/index.php/topic,51188.msg278141.html#msg278141
* Remove this filter configure call, something else will take care of this and ↵smos2012-07-281-2/+0
| | | | we don't need to do that here.
* Supress the error message if the ldap bind doesnt happenWarren Baker2012-07-271-1/+1
|
* Make use of product_nameWarren Baker2012-07-271-1/+1
|
* Put fix for IE 8/9 url handling bugErmal2012-07-271-1/+2
|
* Add the new 100.64/10 nat 444 CGN/LSN shared transition space netblock here. ↵smos2012-07-272-0/+2
| | | | Also add it as a private network in the private network block
* 99./8 is not private IP spaceChris Buechler2012-07-261-1/+0
|
* zone names can only contain A-Z a-z 0-9 _.Darren Embry2012-07-261-3/+3
|
* validate that zone name doesn't contain spaces.Darren Embry2012-07-261-0/+4
| | | | fixes #2560
* Merge branch 'master' of git://github.com/bsdperimeter/pfsenseDarren Embry2012-07-2655-451/+896
|\
| * Merge pull request #192 from phil-davis/masterSeth Mos2012-07-252-72/+168
| |\ | | | | | | Validate advanced gateway monitoring settings
| | * Validate advanced gateway monitoring settingsPhil Davis2012-07-251-55/+146
| | | | | | | | | | | | | | | Use the default values from return_apinger_defaults. Validate values - low less than high, probe interval less than "down" time, values are positive numeric. Update descriptions on the UI to show the defaults used.
| | * Put apinger default values into a functionPhil Davis2012-07-251-17/+22
| | | | | | | | | The default advanced apinger parameter values are now returned by function return_apinger_defaults. So they can easily be obtained by any code that cares.
| * | Merge pull request #193 from phildd/masterWarren Baker2012-07-251-2/+2
| |\ \ | | |/ | |/| Allow dom_title width parameter to be null
| | * Allow dom_title width parameter to be nullphildd2012-07-261-2/+2
| |/ | | | | | | This prevents warning messages if called without the width parameter - reported in forum http://forum.pfsense.org/index.php/topic,51822.0.html The code already handles width being NULL or blank, it just needs to be explicitly defaulted when the parameter is not passed at all.
| * Merge pull request #191 from phil-davis/masterErmal Luçi2012-07-251-2/+3
| |\ | | | | | | Add "done" after "Starting NTP Time Client"
| | * Add done after NTP Time Client start messagePhil Davis2012-07-251-2/+3
| |/ | | | | Add a done and newline so the console messages at boot all line up the same.
| * Handle when the tab is set to host or network that the IP tab should still ↵Warren Baker2012-07-241-1/+3
| | | | | | | | be displayed
| * Return the user to the tab they were working originally working onWarren Baker2012-07-242-16/+22
| |
| * Apply same logic and only display 10 UrlsWarren Baker2012-07-241-2/+6
| |
| * Display the URL's listed and not the word 'array'Warren Baker2012-07-241-2/+3
| |
| * Merge pull request #98 from namezero111111/patch-1Ermal Luçi2012-07-221-0/+9
| |\ | | | | | | Minimal non-intrusive change for SSHDCond package extra parameters
| | * Minimal non-intrusive change for SSHDCond package extra parametersNamezero2012-05-041-0/+9
| | |
OpenPOWER on IntegriCloud