aboutsummaryrefslogtreecommitdiffstats
path: root/modules/buildsystem/manifests/mgacreatehome.pp
blob: bf1c6c1d2495f2c3b9e041eb99eea31da2434310 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class buildsystem {
    # temporary script to create home dir with ssh key
    # taking login and url as arguments
    class mgacreatehome {
	file { "/usr/local/sbin/mgacreatehome":
            ensure => present,
            owner => root,
            group => root,
            mode => 700,
            content => template("buildsystem/mgacreatehome")
	}
    }
}