ajout ocs / laps / malware

This commit is contained in:
2024-09-30 17:07:46 +02:00
parent 35de5198ac
commit da16d00032
8 changed files with 335 additions and 7 deletions

View File

@@ -0,0 +1,27 @@
func_malwarebytes()
{
#!/bin/bash
#=======================================================================
# FILE: ~malwarebytes.sh
# USAGE: ./~malwarebytes.sh
# DESCRIPTION: Installation du package malwarebytes sur les postes debians
#
# OPTIONS: ---
# REQUIREMENTS: ---
# BUGS: ---
# NOTES: ---
# AUTHOR: Maxime Tertrais
# COMPANY: Operis
# CREATED: 30/09/2024
# REVISION: ---
#=======================================================================
##Définition des variables
srclist="/etc/apt/sources.list.d/mblinux.list"
#=======================================================================
##Script
touch $srclist
echo 'deb [arch=amd64] https://repositories.mwbsys.com/dpkg jessie non-free' | tee -a $srclist
wget -q -O - https://repositories.mwbsys.com/dpkg/keyring.gpg | apt-key add -
apt-get update; ACCOUNTTOKEN=cbfa3f5f-e8a5-4603-bb2f-f034e56fdf21 apt-get install mblinux;
}