Share Pastebin
Guest
Public paste!

Untitled

By: a guest | Mar 12th, 2009 | Syntax: None | Size: 1.34 KB | Hits: 146 | Expires: Never
Copy text to clipboard
  1. <?xml version="1.0"?>
  2. <add_on_products xmlns="http://www.suse.com/1.0/yast2ns"
  3.         xmlns:config="http://www.suse.com/1.0/configns">
  4.         <!-- List of available products -->
  5.         <product_items config:type="list">
  6.  
  7.                 <!-- The first product item -->
  8.                 <product_item>
  9.                         <!-- Product name visible in UI when offered to user (optional item) -->
  10.                         <name>Acer_Aspire_One</name>
  11.                         <!-- Product URL (mandatory item) -->
  12.                         <url>hd:///updates?device=/dev/sda1</url>
  13.                         <!-- Product path, default is "/" (optional item) -->
  14.                         <path>/</path>
  15.                         <!--
  16.                                 List of products to install from media, by default all products
  17.                                 from media are installed (optional item)
  18.                         -->
  19.                         <install_products config:type="list">
  20.                                 <!--
  21.                                         Product to install - matching the metadata product 'name'
  22.                                         (mandatory to fully define 'install_products')
  23.                                 -->
  24.                                 <product>Acer_Aspire_One</product>
  25.                         </install_products>
  26.  
  27.                         <!--
  28.                                 If set to 'true', user is asked whether to install this product,
  29.                                 default is 'false' (optional)
  30.                         -->
  31.                         <ask_user config:type="boolean">false</ask_user>
  32.                         <!--
  33.                                 Connected to 'ask_user', sets the default status of product,
  34.                                 default is 'false' (optional)
  35.                         -->
  36.                         <selected config:type="boolean">true</selected>
  37.                 </product_item>
  38.  
  39.                 <!-- Another product item -->
  40.                 <product_item />
  41.         </product_items>
  42. </add_on_products>