mirror of https://github.com/interlegis/sigi.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
305 B
13 lines
305 B
#!/bin/bash
|
|
|
|
puppet_install () {
|
|
puppet module list | grep $1 || puppet module install $1
|
|
}
|
|
|
|
puppet_install puppetlabs-vcsrepo
|
|
puppet_install stankevich-python
|
|
|
|
# XXX Usando provisoriamente o modulo oficial ate que sincronizemos nosso repo
|
|
# XXX retirar esta linha entao
|
|
puppet_install jfryman-nginx
|
|
|
|
|