home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / boot / i386 / root / usr / share / YaST2 / scrconf / insserv_conf.scr < prev    next >
Encoding:
Text File  |  2006-11-29  |  773 b   |  46 lines

  1. /**
  2.  * File:
  3.  *   insserv_conf.scr
  4.  * Summary:
  5.  *   SCR Agent for reading LSB system facilites definition.
  6.  * Access:
  7.  *   read-only
  8.  * Authors:
  9.  *   Martin Vidner <mvidner@suse.cz>
  10.  * See:
  11.  *   yast2-agent-any/anyagent.html
  12.  * Example:
  13.  *   Read(.init.insserv_conf)
  14.  *    $[
  15.  *        "$local_fs":["boot"],
  16.  *        "$network":["network", "pcmcia", "hotplug"],
  17.  *        "$remote_fs":["$local_fs", "nfs"],
  18.  *        ...
  19.  *    ]
  20.  * 
  21.  * $Id: insserv_conf.scr 13018 2003-12-11 12:52:53Z jhumpol $
  22.  */
  23. .init.insserv_conf
  24.  
  25. `ag_anyagent (
  26.     `Description (
  27.     `File ("/etc/insserv.conf"),
  28.     "#\n",
  29.     true,
  30.     /* man insserv(8) */
  31.     (
  32.         `Tuple (
  33.         `Name (`String ("^\t\n ")),
  34.         `Whitespace(),
  35.         `Value (
  36.             `List(
  37.             `String ("^\t\n "),
  38.             `Whitespace ()
  39.             )
  40.             ),
  41.         `Continue ("\n")
  42.         )
  43.         )
  44.     )
  45.     )
  46.