Created
August 7, 2019 16:10
-
-
Save jfrantz1-r7/8578f9570a6e5a6b9944abcb1533076d to your computer and use it in GitHub Desktop.
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
| cd /tmp/ | |
| wget http://download2.rapid7.com/download/InsightVM/Rapid7Setup-Linux64.bin | |
| chmod +x Rapid7Setup-Linux64.bin | |
| opt_custname="Test" | |
| opt_custlastname="Last Name" | |
| opt_custcpny="Company Name" | |
| typ=true #false | |
| eng=true #true | |
| /tmp/Rapid7Setup-Linux64.bin -q -overwrite \ | |
| -Djava.net.useSystemProxies=false \ | |
| -Vfirstname="$opt_custname" -Vlastname="$opt_custlastname" \ | |
| -Vcompany="$opt_custcpny" \ | |
| -Vsys.component.typical\$Boolean=$typ \ | |
| -Vsys.component.engine\$Boolean=$eng \ | |
| -VcommunicationDirectionChoice\$Integer=1 \ | |
| -VrequirePasswordChange\$Boolean=false \ | |
| -VinitService\$Boolean=true \ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment