aboutsummaryrefslogtreecommitdiffstats
path: root/modules/restrictshell/manifests/shell.pp
blob: 77044ed4841b3bdf65e653d1e863ac29f2864f13 (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'),
    }
}