Hello: I have an autoyast profile that looks like this: <?xml version="1.0"?> <!DOCTYPE profile SYSTEM "/usr/share/autoinstall/dtd/profile.dtd"> <profile xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.com/1.0/configns"> <configure> <firewall> <start_firewall config:type="boolean">false</start_firewall> </firewall> ... This profile woks perfect. Now I try the following (as sugested by http://www.suse.de/~nashif/autoinstallation/faq.html#id2460912): <?xml version="1.0"?> <!DOCTYPE profile SYSTEM "/usr/share/autoinstall/dtd/profile.dtd"> <profile xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.com/1.0/configns"> <configure> <xinclude:include href="http://path/to/firewall.xml" /> ... and firewall.xml looks like this: <firewall> <start_firewall config:type="boolean">false</start_firewall> </firewall> and this does not work. Any idea on what could be wrong?, I already verified that the included file is accesible. Thanks for any help, Darío PD: Is there any (nearly) complete documentation on autoyast? As the documentation found in the Novell site is quite incomplete.
On Tue, 4 Oct 2005, Darío Mariani wrote:
This profile woks perfect. Now I try the following (as sugested by http://www.suse.de/~nashif/autoinstallation/faq.html#id2460912):
<?xml version="1.0"?> <!DOCTYPE profile SYSTEM "/usr/share/autoinstall/dtd/profile.dtd"> <profile xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://www.suse.com/1.0/configns"> <configure> <xinclude:include href="http://path/to/firewall.xml" /> ...
and firewall.xml looks like this:
<firewall> <start_firewall config:type="boolean">false</start_firewall> </firewall>
and this does not work. Any idea on what could be wrong?, I already verified that the included file is accesible. Thanks for any help,
Your <firewall> tag needs to include the XML namespace declarations similar to this <firewall xmlns="http://www.suse.com/1.0/yast2ns" xmlns:config="http://ww w.suse.com/1.0/configns" xmlns:xinclude="http://www.w3.org/2001/XInclude"> ... </firewall> and in your profile tag there should be the entry xmlns:xinclude="http://www.w3.org/2001/XInclude" too. Hope this helps, Volkmar -- Volkmar Glauche - Department of Neurology volkmar.glauche@uniklinik-freiburg.de Universitaetsklinikum Freiburg Phone 49(0)761-270-5331 Breisacher Str. 64 Fax 49(0)761-270-5416 79106 Freiburg
participants (2)
-
Darío Mariani
-
Volkmar Glauche