aboutsummaryrefslogtreecommitdiffstats
path: root/modules/mga-common/manifests/local_script.pp
blob: 0b8f45147d3c383224aa7882d731183fa279f96a (plain)
1
2
3
4
5
6
7
8
9
10
11
define mga-common::local_script($content,
		$owner = 'root',
		$group = 'root',
		$mode = '0755') {
    file { "/usr/local/bin/$name":
	owner   => $owner,
	group   => $group,
	mode    => $mode,
	content => $content,
    }
}