summaryrefslogtreecommitdiffstats
path: root/src/etc
Commit message (Collapse)AuthorAgeFilesLines
* Remove all calls to conf_mount_r* functionsRenato Botelho2016-10-1225-130/+6
|
* Retire restart_httpd.phpRenato Botelho2016-10-121-6/+0
|
* Retire cdrom platform supportRenato Botelho2016-10-128-554/+297
|
* Remove unused global config item 'update_manifest'Renato Botelho2016-10-121-1/+0
|
* Remove hideplatform global config and all uses of itRenato Botelho2016-10-123-21/+2
|
* Remove unused global item 'nopkg_platform'Renato Botelho2016-10-121-1/+0
|
* Retire refcount functions. They are not used anymoreRenato Botelho2016-10-121-76/+0
|
* Retire diag_nanobsd.phpRenato Botelho2016-10-121-6/+0
|
* Obsolete conf_mount_ro() and conf_mount_rw()Renato Botelho2016-10-121-58/+3
| | | | | Now that nanobsd is gone these functions are not necessary anymore. Keep them around until all calls are cleaned up
* Simplify tcsh prompt and respect default terminal colorsRenato Botelho2016-10-121-1/+1
|
* Merge pull request #3156 from stilez/patch-43Renato Botelho2016-10-121-2/+2
|\
| * Remove unused arg in get_pkg_info()stilez2016-09-251-2/+2
| | | | | | The 2nd argument ($info) isn't used in that function, and doesn't seem to be used anywhere else in the codebase.
* | Report quantity of files being installed by minimal and diff options.NOYB2016-10-121-4/+4
| | | | | | | | | | | | Also consolidate some unset commands. (cherry picked from commit 32912ae833a016784cbb4813c45960cefc2d896b)
* | Support minimal and diff options combo rather than diff superseding minimal ↵NOYB2016-10-121-25/+46
| | | | | | | | | | | | | | | | | | (sync both updated and diff files). Break verbose option in two for showing files and/or constructed command. (--show_files, --show_command) Don't save new commit ID if dry run. (--dry-run) (cherry picked from commit a6fd4c0ff4141a1836ed74add1df55477d87ddd0)
* | Merge pull request #3169 from valneacsu/fix_wifi_channel_changeRenato Botelho2016-10-121-7/+8
|\ \
| * | Use tabs consistentlyValentin Neacsu2016-10-021-2/+2
| | |
| * | Re-enable executing the wifi mode command first. This fixes channel ↵Valentin Neacsu2016-10-011-7/+8
| |/ | | | | | | changing, which broke in d325e90818db2b22fc2562c38493769f217230f2.
* | Merge pull request #3171 from phroggster/patch-2Renato Botelho2016-10-121-1/+1
|\ \
| * | Fixup ntpd IPv6 restrict clauses.phroggie2016-10-011-1/+1
| |/ | | | | | | | | | | This should eliminate the following errors from the ntpd log file when using IPv6 or dual-stack networks: "syntax error, unexpected T_Mask, expecting T_EOC"
* | Merge pull request #3179 from valneacsu/fix_wifi_settings_overwriteRenato Botelho2016-10-121-9/+6
|\ \
| * | Only configure wireless MAC address if a spoofed MAC address is setValentin Neacsu2016-10-021-9/+6
| |/
* | Improve gwlb.inc notification mechanismsNewEraCracker2016-10-121-10/+10
| | | | | | | | | | | | 1) Unlink earlier to reduce the chances of any concurrency issues; 2) Translate and improve output of available notification; 3) While I'm here, fix whitespace and improve PHP syntax.
* | Adjust parsing of OpenVPN ciphers to new output format. Fixes #6849jim-p2016-10-111-2/+2
| |
* | Create pkg.conf with ABI settingsRenato Botelho2016-10-101-0/+15
| |
* | Latest nginx requires /var/log/nginx/ to exist, so for users with /var in ↵jim-p2016-10-071-1/+1
| | | | | | | | RAM it needs created.
* | Merge pull request #3141 from PiBa-NL/xmlrpc_seturlRenato Botelho2016-10-062-22/+47
|\ \
| * | XMLRPC, xmlrpc_client, add new scheme parameter in ↵PiBa-NL2016-10-062-22/+47
| |/ | | | | | | setConnectionData(syncip,port,user,pass,schema), for use by packages that sync to custom locations, set public/private on all functions
* | Fix static blackhole routes. Bug was introduced inphroggie2016-09-271-1/+1
|/ | | | 8be135cd114fbc9294ec9dafed2125d0e553956c (February, 2013).
* Do not obsolete extensions.ini to avoid lots of noise on pkg deinstall scriptsRenato Botelho2016-09-161-1/+0
|
* Remove pre/post upgrade scriptsRenato Botelho2016-09-161-0/+3
| | | | | | Thise scripts were used on tarball upgrade before pkg(8). Users running pfSense < 2.3 will need to go to 2.3 first and then to 2.4 so they will not be necessary anymore
* Merge pull request #2782 from fredronnv/masterRenato Botelho2016-09-151-0/+5
|\
| * Use !empty() instead of isset()Fredrik Rönnvall2016-09-151-1/+1
| |
| * Improve handling of source-hash keyFredrik Rönnvall2016-03-231-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | - Store the source-hash key in its own config field. - Validate the provided source-hash key. Check that hex string input is of the form "0x" followed by 32 hexadecimal digits. Any other string not starting with "0x" is hashed using md5 and stored as "0x" followed by the md5 hash. - Correct style issues making sure to follow pfSense Developer Style Guide. - Addition of the stored source-hash key config field in filter.inc, append it to the poolopts variable
* | Revised service running/stopped iconsStephen Beaver2016-09-141-2/+2
| |
* | Merge branch 'master' of git.pfmechanics.com:pfsense/pfsenseStephen Beaver2016-09-14137-500/+370
|\ \
| * \ Merge pull request #3131 from PiBa-NL/20160906-generic-xmlrpc_clientRenato Botelho2016-09-134-326/+187
| |\ \
| | * | XMLRPC, xmlrpc_client set new Netgate copyright.PiBa-NL2016-09-131-1/+1
| | | |
| | * | XMLRPC, xmlrpc_client remove extended class and define setConnectionData(.) ↵PiBa-NL2016-09-132-31/+30
| | | | | | | | | | | | | | | | function instead.
| | * | XMLRPC, xmlrpc_client remove xmlrpc_client.inc from pfSense.obsoletedfilesPiBa-NL2016-09-131-1/+0
| | | |
| | * | XMLRPC, xmlrpc_client simplify construction parameters where possible + cleanupPiBa-NL2016-09-083-28/+39
| | | |
| | * | XMLRPC, generic xmlrpc_client implementation + bugfixes in voucher syncPiBa-NL2016-09-063-319/+171
| | | |
| * | | Merge pull request #3135 from phil-davis/pdlenRenato Botelho2016-09-132-10/+7
| |\ \ \
| | * | | Fix #6768 IPv6 static mapping on delegated prefixesPhil Davis2016-09-122-10/+7
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For example, WAN receives a /48 delegated from the upstream (ISP...), e.g. "2001:470:abcd::" pfSense then uses this as a starting point to calculate the addresses on LAN, OPT1, OPT2 etc where they have been specified asa "track interface WAN". Actually each local interface gets just a /64 taken out of the /48, using the chunk specified by "IPv6 Prefix Id" for that local interface. e.g. if "IPv6 Prefix Id" is set to "a1" on LAN, then the LAN would be: 2001:470:abcd:00a1::/64 Then when we specify a static-mapped address in LAN, or other things that live in LAN, e.g. "::4242" we mean 4242 on from the base LAN address, so "2001:470:abcd:00a1::4242" i.e. we always have a CIDR of 64 when calculating this stuff. We do not want the logic that was in this code that was using the upstream prefix delegation size (like /48). Note: The code in services.inc "worked" because var $ifname was not set, and so $trackifname was blank, $trackcfg was blank, and so the attempted calculation of $pdlen always came out as 64 anyway. That tricked me for a while trying to understand why the use in service.inc worked. system.inc did not work, because it actually claculated $pdlen and got a number like 48 - which actually we do not want here.
| * | | | Merge pull request #2616 from k-paulius/patch-pkg-syslog-v2Renato Botelho2016-09-131-3/+18
| |\ \ \ \ | | |/ / / | |/| | |
| | * | | Code style changesk-paulius2016-02-171-4/+4
| | | | |
| | * | | Allow packages to request syslogd log socket to be created inside chroot by ↵k-paulius2016-02-101-3/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | specifying it in /package/logging/logsocket element. Implements #4898. Example: <package> <logging> <logsocket>/var/appname/var/run/log</logsocket> </logging> </package>
| * | | | Fix up/catch up remote syslog areas. Fixes #6780jim-p2016-09-091-1/+18
| | | | |
| * | | | More pptp bitsjim-p2016-09-091-6/+1
| | | | |
| * | | | Remove some more dangling PPTP bits.jim-p2016-09-092-2/+2
| | | | |
| * | | | Revert "Remove unused file browser.php"Renato Botelho2016-09-081-1/+0
| | | | | | | | | | | | | | | | | | | | This reverts commit 8dee84f4cef55a2f008a319022a762b92e00117e.
OpenPOWER on IntegriCloud