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.