Be kind and respectful, give credit to the original source of content, and search for duplicates before posting.
- FUNCTIONS
FusionInventory::Agent::Task::Deploy - Software deployment support for FusionInventory Agent
With this module, FusionInventory can accept software deployment request from an GLPI server with the FusionInventory plugin.
This module uses SSL certificat to authentificat the server. You may have to point --ca-cert-file or --ca-cert-dir to your public certificat.
If the P2P option is turned on, the agent will looks for peer in its network. The network size will be limited at 255 machines.
isEnabled ( $self )
Returns true if the task is enabled.
Cisco ios linux for gns3 download. GNS3, VirtualBox and Cisco IOS: Download, install and configure Cisco IOS with GNS3 and Virtualbox How to install GNS3 with VirtualBox and use Cisco IOS images – this video shows you. Use nested virtualization with VirtualBox and run Cisco VIRL IOS images on the GNS3 VM. This tutorial explains how add, install, import or mount Cisco IOS in GNS3 step by step with practical examples. In order to use any Cisco device such as router and switch in GNS3, we must have to install that device’s IOS first. Learn how to install, configure and use Cisco IOS in GNS3 in detail. GNS3 Supported Cisco Router IOS Images Download GNS3 is more specific and professional than Cisco Packet Tracer. There is no need to add any Cisco devices to the Packet Tracer, but it is absolutely necessary to download and add the Cisco IOS for GNS3. You need to use GNS3 to use the actual Router and Switch IOS images.
processRemote ( $self, $remoteUrl )
Process orders from a remote server.
run ( $self, %params )
Run the task.
To install FusionInventory::Agent::Task::Deploy, simply copy and paste either of the commands in to your terminal
For more information on module installation please visit the detailed CPAN module installation guide.
PermalinkJoin GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upBranch:master
1 contributor
#!/bin/bash |
# ------------------------------------------------------------------------ |
# FusionInventory |
# Copyright (C) 2010-2013 by the FusionInventory Development Team. |
# |
# http://www.fusioninventory.org/ http://forge.fusioninventory.org/ |
# ------------------------------------------------------------------------ |
# |
# LICENSE |
# |
# This file is part of FusionInventory project. |
# |
# FusionInventory Agent Installer for Microsoft Windows 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; |
# either version 2 of the License, or (at your option) any later version. |
# |
# |
# FusionInventory Agent Installer for Microsoft Windows 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. |
# |
# You should have received a copy of the GNU General Public License |
# along with this program; if not, write to the Free Software Foundation, |
# Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA, |
# or see <http://www.gnu.org/licenses/>. |
# |
# ------------------------------------------------------------------------ |
# |
# @package FusionInventory Agent Installer for Microsoft Windows |
# @file .PerlScriptsuninstall-fusioninventory-agent.sh |
# @author Tomas Abad <tabadgp@gmail.com> |
# @copyright Copyright (c) 2010-2013 FusionInventory Team |
# @license GNU GPL version 2 or (at your option) any later version |
# http://www.gnu.org/licenses/old-licenses/gpl-2.0-standalone.html |
# @link http://www.fusioninventory.org/ |
# @link http://forge.fusioninventory.org/projects/fusioninventory-agent |
# @since 2012 |
# |
# ------------------------------------------------------------------------ |
# Load perl environment |
source ./load-perl-environment |
declare -i iter=0 |
declare basename='' |
declare -r rm=$(type -P rm) |
# Check the OS |
if [ '${MSYSTEM}'='MSYS' ];then |
# Windows OS with MinGW/MSYS |
basename='${0##*}' |
# No operation |
echo> /dev/null |
else |
if [ -n'${WINDIR}' ];then |
# It's a Windows OS |
basename='${0##*}' |
echo |
echo -n 'You can not launch '${basename}' directly. ' |
echo'Please, launch '${basename%.sh}.bat' instead.' |
echo |
exit 1 |
fi |
# It's a UNIX OS. |
basename='${0##*/}' |
fi |
# Check whether Strawberry Perl ${strawberry_path} is already installed |
if [ !-d'${strawberry_path}' ];then |
echo |
echo'Sorry but it seems that Strawberry Perl ${strawberry_release} (${strawberry_version}-32/64bits)' |
echo'is not installed into the '${strawberry_path}' directory.' |
echo'Please, install it with 'install-strawberry-perl.bat' and try again.' |
echo |
exit 2 |
fi |
# Uninstallation loop |
while((${iter}<${#archs[@]}));do |
# Set arch and arch_label |
arch=${archs[${iter}]} |
arch_label=${arch_labels[${iter}]} |
# Uninstall FusionInventory-Agent |
echo -n 'Uninstalling FusionInventory-Agent ${fusinv_agent_commit} from Strawberry Perl ${strawberry_release} (${strawberry_version}-${arch_label}s).' |
eval${rm} -rf '${strawberry_arch_path}/cpan/sources/${fusinv_agent_mod_name}-${fusinv_agent_commit}'> /dev/null 2>&1 |
echo'.Done!' |
# New architecture |
iter=$((${iter}+1)) |
done |
echo |
Copy lines Copy permalink