diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2017-12-31 15:39:08 -0200 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2017-12-31 15:39:08 -0200 |
commit | 491d33b28fd893519e375217b20f52f3cb68600c (patch) | |
tree | 364bd1567bbf7fbdbcb999dc6c3f66bfa3f979e1 | |
parent | 6c6dcf516c8b4ad3fe0c0a7c34164c98005d9ad8 (diff) | |
download | puppet-nodo-491d33b28fd893519e375217b20f52f3cb68600c.tar.gz puppet-nodo-491d33b28fd893519e375217b20f52f3cb68600c.tar.bz2 |
Fixes nodo::utils::security::etoken
-rw-r--r-- | manifests/utils/security/etoken.pp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/manifests/utils/security/etoken.pp b/manifests/utils/security/etoken.pp index f8b87cd..b933c4a 100644 --- a/manifests/utils/security/etoken.pp +++ b/manifests/utils/security/etoken.pp @@ -1,13 +1,12 @@ # See https://blog.fluxo.info/research/token/ class nodo::utils::security::etoken ( - $ensure => 'installed', + $ensure = 'installed', ) { package { [ 'opensc', 'libccid', 'pcsc-tools', 'pcscd', - 'pcscd', 'libpcsclite1', ]: ensure => $ensure, |