Push old repo

This commit is contained in:
sm_moshi
2024-03-11 14:27:11 +01:00
parent 365ac992bc
commit 91de56d6b6
6 changed files with 330 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#!/bin/bash
SOPHOS_DIR=$(mktemp -d -t Sophos_Install)
trap 'rm -rf ${SOPHOS_DIR}' EXIT
cd $SOPHOS_DIR
# Installing Sophos
curl -L -O "put installer URL in these quotes."
unzip SophosInstall.zip
chmod a+x $SOPHOS_DIR/Sophos\ Installer.app/Contents/MacOS/Sophos\ Installer
chmod a+x $SOPHOS_DIR/Sophos\ Installer.app/Contents/MacOS/tools/com.sophos.bootstrap.helper
$SOPHOS_DIR/Sophos\ Installer.app/Contents/MacOS/Sophos\ Installer --quiet
rm -rf $SOPHOS_DIR
exit 0