-
-
Save jeffmaxton/f1a1cc1845156532b10d193b9b6ae0c5 to your computer and use it in GitHub Desktop.
crashplan remote script for OSX
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/sh | |
| # Adapt the two first variables to your environment | |
| # Requirements: | |
| # -the user below can connect to the IP without password (copy ssh key) | |
| # changes on server: ...share/crashplan/conf/my.service.xml: | |
| # <serviceUIConfig> | |
| # <serviceHost>0.0.0.0</serviceHost> | |
| # | |
| CPSSHUSER='root' | |
| CPHOST='192.168.1.214' | |
| cd /Library/Application\ Support/CrashPlan/ | |
| rm -f .ui_info | |
| scp $CPSSHUSER@$CPHOST:/var/lib/crashplan/.ui_info ./.ui_info | |
| #CPPORT=`cat .ui_info | cut -d ',' -f 1` | |
| echo "current port: $CPPORT on $CPHOST" | |
| WRONGIP=`cat .ui_info | cut -d ',' -f 3` | |
| #sed -i .ui_info "s/$CPPORT/4200/g" .ui_info | |
| sed -i .ui_info "s/$WRONGIP/$CPHOST/g" .ui_info | |
| #ssh -f -L 4200:127.0.0.1:$CPPORT $CPSSHUSER@$CPHOST -N | |
| open -W -a CrashPlan.app | |
| #kill $(ps -A | grep 'ssh -f -L 4200:127.0.0.1' | grep -v grep | awk '{print $1}') | |
| #rm -f .ui_info | |
| #mv .ui_info_bak .ui_info | |
| exit | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment