mirror of
https://github.com/krislamo/puppet-fluentd
synced 2024-11-12 21:50:34 +00:00
7821317f84
this will manage the user if is set to true. This will add the td-agent user to the user group 'adm', so td-agent can view log files under /var/log/*.
23 lines
473 B
Ruby
23 lines
473 B
Ruby
require 'spec_helper'
|
|
|
|
describe 'fluentd::user', :type => :class do
|
|
let(:facts) {
|
|
{
|
|
:osfamily => 'Debian',
|
|
:lsbdistid => 'Ubuntu',
|
|
:operatingsystem => 'Ubuntu',
|
|
:lsbdistcodename => 'precise',
|
|
}
|
|
}
|
|
|
|
describe 'when called with no parameters on Ubuntu' do
|
|
it {
|
|
should contain_user('fluentd').with({
|
|
'name' => 'td-agent',
|
|
'gid' => 'td-agent',
|
|
'groups' => ['adm']
|
|
})
|
|
}
|
|
end
|
|
end
|