Add 'tic' user

This commit is contained in:
Monocots 2022-10-25 19:00:28 +00:00
parent 2774694b4c
commit 6de4b3ef23

View file

@ -23,6 +23,22 @@ class rhizo_base::users {
purge_ssh_keys => true
}
group { 'tic':
name => 'tic',
ensure => present
}
user { 'tic':
ensure => present,
uid => '2000',
gid => 'users',
groups => 'operator',
home => '/home/tic',
shell => '/bin/bash',
managehome => true,
purge_ssh_keys => true,
}
file { '/home/rhizomatica/.ssh/config':
content => template('rhizo_base/ssh_user_config.erb'),
owner => 'rhizomatica',