blob: aea40869cfedc8aeb456e5a72e12d97c15ed79c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
'use strict';
'require baseclass';
'require form';
return baseclass.extend({
title: _('Users Plugin Configuration'),
description: _('The users plugin collects statistics about users logged in locally via shell. NOTE: Local shell (wtmp) tracking is NOT enabled in default builds. Additional setup is required to get non-zero counts.'),
addFormOptions(s) {
let o = s.option(form.Flag, 'enable', _('Enable this plugin'));
},
configSummary(section) {
return _('Monitoring shell users count');
}
});
|