aboutsummaryrefslogtreecommitdiffstats
path: root/modules/restrictshell/manifests/shell.pp
blob: 3ef2a03601619d4515ae1b78df4ff89ba7f13128 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class restrictshell::shell {
    file { '/etc/membersh-conf.d':
        ensure => directory,
    }

    mga_common::local_script { 'sv_membersh.pl':
        content => template('restrictshell/sv_membersh.pl'),
    }

    file { '/etc/membersh-conf.pl':
        mode    => '0755',
        content => template('restrictshell/membersh-conf.pl'),
    }
}