add the operating system profile
[oracle_puppet.git] / modules / oracle / manifests / virt_users.pp
blob5465a553c39ea0010dc6343fb9579eda8fb477f4
2 # Copyright (C) 2009 Jeremy Baumont
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
17 class oracle::virt_users {
19 @user { oracle:
20 ensure => present,
21 uid => 500,
22 gid => 500,
23 comment => "Oracle Application User",
24 home => "/users/oracle",
25 require => Group["dba"],
26 shell => "/usr/bin/bash",
29 file {
30 "/users/oracle/":
31 ensure => directory,
32 mode => 0750, owner => oracle, group => dba;
33 "/users/oracle/.bashrc":
34 source => "$fileserver/users/oracle/.bashrc",
35 mode => 0640, owner => oracle, group => dba;
36 "/users/oracle/.bash_profile":
37 name => "/users/oracle/.bash_profile",
38 mode => 0640, owner => oracle, group => dba;
39 "/users/oracle/.ssh":
40 ensure => directory,
41 mode => 0700, owner => oracle, group => dba;
42 "/users/oracle/.ssh/authorized_keys":
43 source => "$fileserver/users/oracle/.ssh/authorized_keys",
44 mode => 0600, owner => oracle, group => dba;
45 # "/users/oracle/.ssh/config":
46 # source => "$fileserver/users/oracle/.ssh/config",
47 # mode => 0600, owner => oracle, group => dba;