Last active
January 4, 2021 19:14
-
-
Save carlosromel/4b217cffbb552462bd88abd4bf815553 to your computer and use it in GitHub Desktop.
Instalação do cliente SNX do EndPoint VPN.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| mkdir -p ~/bin | |
| sudo apt install --yes \ | |
| libnss3-tools \ | |
| libpam0g:i386 \ | |
| libstdc++5:i386 \ | |
| libx11-6:i386 | |
| sudo apt autoremove --yes | |
| if [ ! -f bin/snx_install_linux30.sh ]; then | |
| wget "https://dl3.checkpoint.com/paid/72/72c2c91791690927da0586ec873430cf/snx_install_linux30.sh?HashKey=1609277812_455be58adcb75f49d33b284eb0d9c688&xtn=.sh" --output-document=bin/snx_install_linux30.sh | |
| chmod +x bin/snx_install_linux30.sh | |
| fi | |
| sudo bin/snx_install_linux30.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment