mirror of
https://github.com/librenms/librenms.git
synced 2024-10-07 16:52:45 +00:00
Apply fixes from StyleCI (#14899)
Co-authored-by: StyleCI Bot <bot@styleci.io>
This commit is contained in:
@@ -8,49 +8,49 @@
|
||||
| request an environment variable to be created upstream or send a pull request.
|
||||
*/
|
||||
|
||||
return [
|
||||
return [
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| User
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the user LibreNMS runs as. It is used to secure permissions
|
||||
| and grant access to things needed. Defaults to librenms.
|
||||
*/
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| User
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the user LibreNMS runs as. It is used to secure permissions
|
||||
| and grant access to things needed. Defaults to librenms.
|
||||
*/
|
||||
|
||||
'user' => env('LIBRENMS_USER', 'librenms'),
|
||||
'user' => env('LIBRENMS_USER', 'librenms'),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Group
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the group LibreNMS runs as. It is used to secure permissions
|
||||
| and grant access to things needed. Defaults to the same as LIBRENMS_USER.
|
||||
*/
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Group
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value is the group LibreNMS runs as. It is used to secure permissions
|
||||
| and grant access to things needed. Defaults to the same as LIBRENMS_USER.
|
||||
*/
|
||||
|
||||
'group' => env('LIBRENMS_GROUP', env('LIBRENMS_USER', 'librenms')),
|
||||
'group' => env('LIBRENMS_GROUP', env('LIBRENMS_USER', 'librenms')),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Install
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value sets if the install process needs to be run.
|
||||
| You may also specify which install steps to present with a comma separated list.
|
||||
*/
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| Install
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| This value sets if the install process needs to be run.
|
||||
| You may also specify which install steps to present with a comma separated list.
|
||||
*/
|
||||
|
||||
'install' => env('INSTALL', false),
|
||||
'install' => env('INSTALL', false),
|
||||
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| NODE ID
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Unique value to identify this node. Primarily used for distributed polling.
|
||||
*/
|
||||
/*
|
||||
|--------------------------------------------------------------------------
|
||||
| NODE ID
|
||||
|--------------------------------------------------------------------------
|
||||
|
|
||||
| Unique value to identify this node. Primarily used for distributed polling.
|
||||
*/
|
||||
|
||||
'node_id' => env('NODE_ID'),
|
||||
'node_id' => env('NODE_ID'),
|
||||
|
||||
];
|
||||
];
|
||||
|
Reference in New Issue
Block a user