diff options
| author | Silvio Rhatto <rhatto@riseup.net> | 2015-07-21 10:09:35 -0300 | 
|---|---|---|
| committer | Silvio Rhatto <rhatto@riseup.net> | 2015-07-21 10:09:35 -0300 | 
| commit | 87e4f6736bf37686390fd266b765a45c9511bbfa (patch) | |
| tree | 05d2ff67a4cd14dcc43561e0120ef66b22d4d6f2 /manifests/utils | |
| parent | 9509bf12fe80a7483209e95994ab371df69d4eef (diff) | |
| download | puppet-nodo-87e4f6736bf37686390fd266b765a45c9511bbfa.tar.gz puppet-nodo-87e4f6736bf37686390fd266b765a45c9511bbfa.tar.bz2  | |
Adds git-crypt
Diffstat (limited to 'manifests/utils')
| -rw-r--r-- | manifests/utils/development/git.pp | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/manifests/utils/development/git.pp b/manifests/utils/development/git.pp index 174be58..03790f3 100644 --- a/manifests/utils/development/git.pp +++ b/manifests/utils/development/git.pp @@ -3,4 +3,12 @@ class nodo::utils::development::git {                'git-extras', 'git-flow', 'topgit', 'git-remote-gcrypt', ]:      ensure => installed,    } + +  package { 'git-crypt': +    ensure => $::lsbdistcodename ? { +      'stretch' => present, +      'sid'     => present, +      default   => absent, +    } +  }  }  | 
