Push old repo
This commit is contained in:
13
SophosInstall/Deployment Tools/Install Sophos Script.txt
Executable file
13
SophosInstall/Deployment Tools/Install Sophos Script.txt
Executable 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
|
||||
Reference in New Issue
Block a user