Documenting Package System
-
One note…if using a developers pfSense install to host the package files and the xmlrpc server, you will need to comment out line 394 in xmlrpc_server.inc.
It's the line that reads:
header($this->server_headers);For some reason it seems to clash with lighttpd and I don't feel like debugging it. Works fine with Apache apparently (and works fine w/out that header being sent). With lighty, multiple headers appear to be sent.
--Bill
-
-
if you mess up thepkg_config.xml you will get a totally misleading error when you take System -> Packages. which says to check your network connection.
Unable to communicate to my_server.com. Please check DNS, default gateway, etc.
But this error can also come if your pkg_config.xml is bad. I have spend the whole day today to track this :(
raj
-
http://your_server.com/pfSense/pkg_tester.php is your friend!
raj
-
-
http://your_server.com/pfSense/pkg_tester.php is your friend!
raj
Say what!?
I was using pkg_tester.php while I was debugging the the problem caused by incorrect pkg_config.xml. The problem exact problem was that I put two log statements in logging section. Like this:
<logging><facilityname>HAVP Access Log</facilityname> <logfilename>access.log</logfilename> <facilityname>HAVP Error Log</facilityname> <logfilename>havp.log</logfilename></logging>
I was just trying out things by trial and error, and if I put two <facilityname>and <logfilename>inside <logging>the xml_parse($xml_parser, $data, feof($fp))) inside parse_xml_config_raw fails to return. To track this problem I used pkg_tester.php. that's why I said pkg_tester.php is your friend. If some one else is struggling with similar problems again this just gives them one more idea to work with.
raj </logging></logfilename></facilityname>
-
For my records in the future:
Warning: Header may not contain more than a single header, new line detected. in /usr/local/www/pfsense/Etomite0.6/pfSense/xmlrpc_server.inc on line 394
This fixes this issue. Just ran into this on the pfSense.com website serving packages.
Woops.
-
Hello,
I made a local "Package server" on my Network for Develop on packages. I do all this what you write in your config, and it works. But if in the pkg_config.xml a package has more than one <depends_on>lines, like squid or clamav, i became an errormessage on my pfsensebox. He says: "cant connect to xxx.xxx.xxx.xxx. Cached data yoused." If i only use packages that had only one <depends_on>line, all works fine. Why is that so???
The Packageserver is a Apache 2 Server with the latest xmlrpc-code.
Do i somthing wrong???
So please help me, because my dsl-connection somtimes break down for hours. Not good :(
So thanks and a nice day for you…
Bye
Thomasp.s. sorry, for my worst english ;)</depends_on></depends_on>
-
hi thowie,
you have to checkout the xmlrpc stuff from the cvs (www folder) - the xmlrpc.tgz in the first post is an older version.
then it works with more than one depency per package.greets
captaintrip -
Adding my questions here, if some one know the answers to them pl reply.
-
what is the meaning of logging along with facilityname and logfilename in manifest xml
-
What is the difference between config_file and configurationfile in manifest xml
I cannot tell you a clear answer to this i have to look at the code.
- http://pfsense.com/packages/pkg_config.xml has package tag inside packages tab and ouside it. for example spamd comes inside packages tag,
while pure-ftpd comes directly under pfsensepkgs. What's the difference?
Some packages are removed from that list to not be allowed to install iirc.
- Which of the tags are mandatory for manifest xml
Only logging/descr is optional, while missing the others might break things.
- Is the version tag in package xml the same as the one in manifest xml?
Yes.
- What types of file can be included via include_file ? (Only php or another xml file also?)
include_file is just for including a file that is needed and it need to be php files.
- How is include_file different from additional_files_needed
additional_files is used during installation/syncing of package while include is for needed dependencies of php code.
- When tabs are used what should be the format of externel xml files that are included?
XML the same as the xml file you use for one package.
- How can I display the output of commands executed during installation to the output window?
There is a global variable $static_output to which you can add.
- How can I make one pfSense package dependent on another pfSense package? For example havp package depends on clamav package, and that package needs to be installed and configured
Apparently this is not possible
Its through additional_files_needed tag but i think it is not really finished or has some culprits to use.
Basically you specify the xml files in that tag that are needed. -