Puppet Class: sshkeymanager::webapp::install

Defined in:
manifests/webapp/install.pp

Overview



3
4
5
6
7
8
9
10
11
12
# File 'manifests/webapp/install.pp', line 3

class sshkeymanager::webapp::install {
  vcsrepo { 'skm-django':
    ensure   => present,
    provider => 'git',
    source   => 'https://github.com/hggh/sshkeymanager-django.git',
    path     => $sshkeymanager::webapp::install_dir,
    user     => $sshkeymanager::webapp::user,
    group    => $sshkeymanager::webapp::group,
  }
}