~citrix-openstack/nova/xenapi

« back to all changes in this revision

Viewing changes to contrib/puppet/manifests/classes/issue.pp

  • Committer: Tarmac
  • Author(s): Todd Willey, root, Vishvananda Ishaya, Joe Heck, root, Andy Smith, Anne Gentle, Dean Troyer, Devin Carlen
  • Date: 2010-11-16 02:34:47 UTC
  • mfrom: (386.2.71 trunkdoc)
  • Revision ID: hudson@openstack.org-20101116023447-pz7n6ps5rf0fnjea
Lots of documentation and docstring updates.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
class issue {
 
2
  file { "/etc/issue":
 
3
    owner => "root",
 
4
    group => "root",
 
5
    mode => 444,
 
6
    source => "puppet://${puppet_server}/files/etc/issue",
 
7
  }
 
8
  file { "/etc/issue.net":
 
9
    owner => "root",
 
10
    group => "root",
 
11
    mode => 444,
 
12
    source => "puppet://${puppet_server}/files/etc/issue",
 
13
  }
 
14
}