summaryrefslogtreecommitdiffstats
path: root/etc
Commit message (Collapse)AuthorAgeFilesLines
...
* Remove the unnecessary deletion of rc.conf. Add an empty rc.conf with aChris Buechler2015-07-013-6/+1
| | | | note so people don't think they should be using it.
* Simplify logic and use correct calls for install_packageRenato Botelho2015-07-012-21/+12
|
* Fix install_package() return for failureRenato Botelho2015-07-011-1/+1
|
* Stop using undefined variable and create a single package debug fileRenato Botelho2015-07-011-1/+1
|
* Improve debug messagesRenato Botelho2015-07-011-2/+5
|
* Fix call to undefined function read_pkg_configRenato Botelho2015-07-011-1/+1
|
* Only try to remove pkg if it's installed, otherwise just cleanup xml partRenato Botelho2015-07-011-1/+6
|
* Implement get_pkg_info()Renato Botelho2015-07-011-12/+40
|
* Make pkg_delete() more verboseRenato Botelho2015-07-011-2/+3
|
* Remove packages from cache after install, also add debug messagesRenato Botelho2015-07-011-2/+6
|
* Mute call to 'pkg info -e' used to check if pkg is installedRenato Botelho2015-07-011-1/+1
|
* Re-implement pkg_call() using proc_open() and stream_select() and also ↵Renato Botelho2015-07-011-4/+124
| | | | implement pkg_exec()
* pfsense-utils.inc is being required, there is no chance of update_status() ↵Renato Botelho2015-07-011-11/+2
| | | | and update_output_window() don't exist
* Make rc.packages deal with fcgicli callRenato Botelho2015-06-301-4/+16
|
* Use interface-automatic for Unbound when the interfaces list is empty (same ↵jim-p2015-06-261-0/+2
| | | | as All) otherwise it breaks with a default CARP config.
* Add D1540-XG.Matt Smith2015-06-231-0/+3
|
* Introduce Netgate RCC-DFF to the list of known platformsRenato Botelho2015-06-232-2/+8
|
* rereadall is not enough here, restore reload call to make sure everything ↵Renato Botelho2015-06-231-0/+1
| | | | works. Ticket #4785
* Replace ipsec rereadsecrets + reload by single rereadall, that will re-read ↵Renato Botelho2015-06-231-2/+1
| | | | also cert changes. Ticket #4785
* Instead of sending USR1, just call ipsec reload. And before it, call ipsec ↵Renato Botelho2015-06-231-1/+2
| | | | rereadsecrets to make sure new secretes are updated. It should fix #4785
* Partially revert 019ee2bc8c, this workaround is not necessary. Real fix will ↵Renato Botelho2015-06-231-8/+0
| | | | be committed after this
* Add a workaround for ticket #4785:Renato Botelho2015-06-231-4/+17
| | | | | | There was a regression on strongswan between 5.3.0 and 5.3.2 as reported at [1]. To workaround this issue, add an extra line on ipsec.secrets with right fqdn.
* Merge pull request #1728 from devnullity/patch-1Chris Buechler2015-06-231-1/+1
|\
| * Fix var name typo in shaper.inc Ben Cook2015-06-211-1/+1
| | | | | | Fix typo so get_bandwidthtype_scale can do more than default to "1".
* | Don't delete /var/tmp/, that was originally done to clear session data at ↵Chris Buechler2015-06-221-1/+0
| | | | | | | | boot, but no longer applicable as session data is no longer in /var/tmp/. Credit to 'aa' on opnsense forum.
* | Use $myid in ipsec.secrets. Ticket #4785Chris Buechler2015-06-221-2/+2
|/ | | | | Conflicts: etc/inc/vpn.inc
* Specify $myid rather than %any here, otherwise user manager and mobile PSKs ↵Chris Buechler2015-06-211-3/+4
| | | | | | | won't match. Ticket #4781 Conflicts: etc/inc/vpn.inc
* Ticket #4746 Correctly set global variables to be used by hostnames cod epathsErmal LUÇI2015-06-191-2/+2
|
* Add a GUI field to increase the pf frag entries limit. Fixes ticket #4775jim-p2015-06-181-0/+5
|
* chmod +x hostidChris Buechler2015-06-181-0/+0
|
* Blacklist invalid "from" sources since they can be picked up accidentally ↵jim-p2015-06-171-1/+3
| | | | and cause rule errors. Fixes #4772
* Add load_balancer_relay_* to obsolete files. They were removed from the ↵jim-p2015-06-161-0/+4
| | | | master branch already.
* Remove the GUI for the pc-sysinstaller as well and add it to obsoletee filesErmal LUÇI2015-06-151-0/+3
|
* Code spacingPhil Davis2015-06-1534-279/+297
| | | | | | | and other random stuff I noticed. I think this finishes messing with code style. The codebase should match the developer style guide closely enough that 99.9% of changes will not feel the need to also massage the formatting.
* Add hostid script in the source to solve the issue with platforms that do ↵Ermal LUÇI2015-06-121-0/+137
| | | | not have proper uuid or duplicate uuid which breaks carp/pfsync and other things in HA setup.
* Merge pull request #1710 from stilez/patch-4Renato Botelho2015-06-111-10/+2
|\
| * simplify is_ipaddrv4() and fix zero-padding issue stilez2015-06-071-10/+2
| | | | | | | | | | | | | | Fixes these two issues: 1) The historical workaround of testing IPv4 for validity by (a) converting to long (b) converting back again, then (c) comparing to see if it's the same as the original, is redundant. The old issue with ip2long() was fixed in PHP 5.2.10 and invalid IPv4 can now be tested simply by ip2long() === FALSE. 2) The workaround didn't really work optimally anyway as it mis-reported otherwise valid IPs as invalid if any octet or the IP as a whole was zero padded. Some IP lists or IP data sources users might use could be zero padded - an avoidable headache.
* | Make the host uuid opt-outErmal LUÇI2015-06-111-3/+10
| |
* | Revert "Ticket #4442 Do not process URL aliases during bootup but trigger it ↵Chris Buechler2015-06-102-4/+3
| | | | | | | | | | | | just after finished booting. This completely solves the bootup delays without lowering the timeout as before. Probably need to increase a bit the timeouts now to be friendly to other connections" This reverts commit ec9eb7891780e5f142838c03203ad8ce267ed89e.
* | Send the machine uuid with the headers requesting the version fileErmal LUÇI2015-06-101-1/+1
| |
* | Send the machine uuid with the headers requesting the version fileErmal LUÇI2015-06-101-1/+1
| |
* | Fixes #4537 On 32bit platform do not enable direct dispatch on IPsec since ↵Ermal LUÇI2015-06-101-0/+3
| | | | | | | | it crashes the system
* | If the filesystem is corrupted i do not think fixing pwd DB is a good thing..Ermal LUÇI2015-06-091-4/+0
| |
* | No need to do the same exercise twice.Ermal LUÇI2015-06-091-6/+0
| |
* | Do not call fsck just out of nowhere here since it cannot be the problem or ↵Ermal LUÇI2015-06-091-6/+4
| | | | | | | | fix.
* | Do not disable APc hereErmal LUÇI2015-06-091-3/+0
| |
* | Restore the file system in R/W mode during most of rc script seems required ↵Ermal LUÇI2015-06-091-0/+15
| | | | | | | | on nano. Should unbreak nanobsd
* | Add a space to the script to avoid that appended parameters seem the same as ↵Ermal LUÇI2015-06-091-1/+1
| | | | | | | | existing one
* | Use skel as the source of new user files rather than copying from root.jim-p2015-06-085-1/+28
| | | | | | | | Reported-By: https://twitter.com/fitchitis/status/607850849172373504
* | Do not synchronize alias url during filter reload rather trigger one if neededErmal LUÇI2015-06-081-2/+3
| |
OpenPOWER on IntegriCloud