summaryrefslogtreecommitdiffstats
path: root/modules/tozt
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2018-11-13 01:20:44 -0500
committerJesse Luehrs <doy@tozt.net>2018-11-13 01:21:19 -0500
commitc3659899860d8519deec2c1f8993e4262e5f7f6c (patch)
treed071625dd2966ef0b3e83dc6b93bf0629441b40e /modules/tozt
parent53a9de2c9b4cf7b595e4553775b44895ee6c36d4 (diff)
downloadpuppet-tozt-c3659899860d8519deec2c1f8993e4262e5f7f6c.tar.gz
puppet-tozt-c3659899860d8519deec2c1f8993e4262e5f7f6c.zip
move password hashes to secrets
Diffstat (limited to 'modules/tozt')
-rw-r--r--modules/tozt/manifests/users.pp4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/tozt/manifests/users.pp b/modules/tozt/manifests/users.pp
index b07373b..0c097b5 100644
--- a/modules/tozt/manifests/users.pp
+++ b/modules/tozt/manifests/users.pp
@@ -1,10 +1,10 @@
class tozt::users {
tozt::user { 'root':
- pwhash => '$6$cqlzoze/Mq3$bHGFqjPF6wBRLcI0VWuQa9cg8c1DfGWL21QdA9KUuDqhtnCfjyaKryu.ACxP9umzuYsWpikegZN6wbTU2JX6V1';
+ pwhash => secret::value('passwd/root');
}
tozt::user { 'doy':
- pwhash => '$6$Q6Y/nmt/QZbU$6D692oUPiFvnQEwoPtL7l83l/KaY/czy9/KI9.GnEEOslQumU39qteDDp.0i9E7nSDodWGOmPgfAsoYJBYrta1',
+ pwhash => secret::value('passwd/doy'),
extra_groups => ['wheel'],
homedir_mode => '0701';
}