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.
8 lines
164 B
8 lines
164 B
#!/bin/bash
|
|
|
|
puppet_install () {
|
|
puppet module list | grep $1 || puppet module install $1
|
|
}
|
|
|
|
puppet_install puppetlabs-vcsrepo
|
|
puppet_install stankevich-python
|
|
|