2015-03-26 13:12:48 +01:00
|
|
|
<?php
|
2015-07-02 15:24:39 +02:00
|
|
|
|
2021-11-04 16:28:15 +01:00
|
|
|
// Pandora FMS - http://pandorafms.com
|
2015-07-02 15:24:39 +02:00
|
|
|
// ==================================================
|
2023-06-08 11:53:13 +02:00
|
|
|
// Copyright (c) 2005-2023 Pandora FMS
|
2023-06-08 13:10:16 +02:00
|
|
|
// Please see http://pandorafms.com/community/ for full contribution list
|
2015-07-02 15:24:39 +02:00
|
|
|
// This program is free software; you can redistribute it and/or
|
|
|
|
// modify it under the terms of the GNU General Public License
|
|
|
|
// as published by the Free Software Foundation; version 2
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU General Public License for more details.
|
2015-03-26 13:12:48 +01:00
|
|
|
global $config;
|
2019-01-30 16:18:44 +01:00
|
|
|
check_login();
|
2019-11-21 18:21:46 +01:00
|
|
|
ui_require_css_file('first_task');
|
2015-03-26 13:12:48 +01:00
|
|
|
?>
|
2019-01-30 16:18:44 +01:00
|
|
|
<?php ui_print_info_message(['no_close' => true, 'message' => __('There are no collections defined yet.') ]); ?>
|
2015-03-26 13:12:48 +01:00
|
|
|
|
2015-06-25 08:21:53 +02:00
|
|
|
<div class="new_task">
|
2019-01-30 16:18:44 +01:00
|
|
|
<div class="image_task">
|
|
|
|
<?php echo html_print_image('images/icono_grande_reconserver.png', true, ['title' => __('Collections')]); ?>
|
|
|
|
</div>
|
|
|
|
<div class="text_task">
|
2019-03-26 19:29:48 +01:00
|
|
|
<h3> <?php echo __('Create Collections'); ?></h3><p id="description_task">
|
2019-01-30 16:18:44 +01:00
|
|
|
<?php
|
|
|
|
echo __(
|
|
|
|
"A file collection is a group of files (e.g. scripts or executables) which are
|
2015-06-25 08:21:53 +02:00
|
|
|
automatically copied to a specific directory of the agent (under Windows or UNIX). The file collections allow to be propagated
|
|
|
|
along with the policies in order to be used by a group of agents, using a 'package' of scripts and modules which use them.
|
|
|
|
First we learn how to use the file collections in the agent's view, how to conduct it manually, agent by agent, without using collections,
|
|
|
|
and how to do the same thing by using policies.Our first task is to arrange a compilation of files. In order to do this, please go to the agent's
|
|
|
|
administrator. Subsequently, we're going to see a 'sub option' called 'Collections'. Please click on it in order to create a new collection as we can see on
|
2019-01-30 16:18:44 +01:00
|
|
|
the picture below. "
|
|
|
|
);
|
|
|
|
?>
|
|
|
|
</p>
|
|
|
|
<form action="index.php?sec=gagente&sec2=enterprise/godmode/agentes/collections&action=new" method="post">
|
|
|
|
<input type="submit" class="button_task" value="<?php echo __('Create Collections'); ?>" />
|
|
|
|
</form>
|
|
|
|
</div>
|
2015-03-26 13:12:48 +01:00
|
|
|
</div>
|