1. [root@n10 ~]# ll /etc/resolv.conf 
  2. -rw-r--r-- 1 root root 110 Jan  4 21:59 /etc/resolv.conf 
  3. [root@n10 ~]# puppet resource file /etc/resolv.conf 
  4. file { '/etc/resolv.conf': 
  5.   ensure  => 'file', 
  6.   content => '{md5}17dff4999ba22dca07cdc3cac3ffc34b', 
  7.   ctime   => 'Fri Jan 04 21:59:36 -0800 2013', 
  8.   group   => '0', 
  9.   mode    => '644', 
  10.   mtime   => 'Fri Jan 04 21:59:36 -0800 2013', 
  11.   owner   => '0', 
  12.   selrole => 'object_r', 
  13.   seltype => 'net_conf_t', 
  14.   seluser => 'system_u', 
  15.   type    => 'file', 
  16. [root@n10 ~]# id 
  17. uid=0(root) gid=0(root) groups=0(root),1(bin),2(daemon),3(sys),4(adm),6(disk),10(wheel) context=root:system_r:unconfined_t:SystemLow-SystemHigh 
  18. [root@n10 ~]# puppet resource user root 
  19. user { 'root': 
  20.   ensure           => 'present', 
  21.   comment          => 'root', 
  22.   gid              => '0', 
  23.   groups           => ['root', 'bin', 'daemon', 'sys', 'adm', 'disk', 'wheel'], 
  24.   home             => '/root', 
  25.   password         => '$1$ChEkQ7I0$B23WW.aWiWS5Gtn/RQtYY/', 
  26.   password_max_age => '99999', 
  27.   password_min_age => '0', 
  28.   shell            => '/bin/bash', 
  29.   uid              => '0',