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
import os | |
import requests | |
xmlMsg = """ | |
<Request APIVersion="1702.1"> | |
<Login> | |
<Username>apiuser</Username> | |
<Password>Password</Password> | |
</Login> | |
<Set operation="update"> |
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 | |
### Crashplan's script to detect the OS and get the appropriate lib from the nlib folder doesn't always work | |
### so this script will download the installer and actually pull out the lib from the specified folder | |
# which folder should the nlib be taken from within the installer | |
takeNlibFromFolder=rhel8 | |
# make sure this is the install dir of crashplan | |
cd /usr/local/crashplan/ |