27 lines
890 B
Bash
27 lines
890 B
Bash
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;
|
|
} |