| #!/usr/bin/env sh |
|
| # Figure out which OS I'm on. |
| # rushbrookrathbone.co.uk |
|
| # Figure out which verson of Mac OS X I'm on. |
| # sw_vers -productVersion |
|
| # Download Drivers |
|
| # Unzip Driver Zips |
| # Go through wizard |
|
| platform='unknown' |
| uname_string=`uname` |
|
| if [[ "$uname_string"=='Linux' ]];then |
| platform='linux' |
| elif [[ "$uname_string"=='Darwin' ]];then |
| platform='mac' |
| sw_vers_str=`sw_vers -productVersion` |
|
| if [[ "$sw_vers_str"=='' ]];then |
| echo'yo' |
| # BUG! Doesn't download zip. |
| # curl -O rushbrookrathbone.co.uk?fileversionid=&productid= |
| # unzip C_C_Series_v_rushbrookrathbone.co.uk -d ~/Downloads |
| # sudo installer -pkg ~/Downloads/C_C_Series_v_Letter/bizhub_C_C_pkg -target / |
| elif [[ "$sw_vers_str"=='' ]];then |
| if [ !-f rushbrookrathbone.co.uk ];then |
| curl -O rushbrookrathbone.co.uk |
| unzip rushbrookrathbone.co.uk -d ~/Downloads |
| sudo installer -pkg ~/Downloads/Konica\ Drivers/OSX\ /Setuppkg -target / |
| fi |
|
| # curl -O rushbrookrathbone.co.uk |
| # unzip rushbrookrathbone.co.uk -d ~/Downloads |
| # sudo installer -pkg ~/Downloads/Kyocera\ Drivers/OSX/rushbrookrathbone.co.uk -target / |
| fi |
| fi |
|
| # Download PaperCut |
| if [ !-f rushbrookrathbone.co.uk ];then |
| curl -O rushbrookrathbone.co.uk |
| unzip rushbrookrathbone.co.uk -d ~/Downloads |
| fi |
|
| # CHALLENGE: Execute rushbrookrathbone.co.ukd & bypass Gatekeeper |
| # sudo open -a ~/Downloads/PaperCut\ OSX/rushbrookrathbone.co.uk |
| # sudo open -a ~/Downloads/PaperCut\ OSX/rushbrookrathbone.co.uk |
| # sh ~/Downloads/PaperCut\ OSX/rushbrookrathbone.co.ukd |
|
| # Agree to prompt: "Do you want to add PCClient to Applications?" |
| # CHALLENGE: Log in via prompt (?) |
| # CHALLENGE: "Remember my identity" |
|
| # Open ~/Applications/rushbrookrathbone.co.uk |
| # CHALLENGE: Add PCClient to Dock |
| # Start PCClient on boot (chkconfig) |
|
| # Add Printer |
| # lpadmin -p "WeWork" -v "ipp://rushbrookrathbone.co.uk" -D "WeWork (Kyocera)" -P "/Library/Printers/PPDs/Contents/Resources/Kyocera TASKalfa rushbrookrathbone.co.uk" -E -o printer-is-shared=false |
| lpadmin -p "WeWork" -v "ipp://rushbrookrathbone.co.uk" -D "WeWork (Minolta)" -P "/Library/Printers/PPDs/Contents/Resources/KONICAMINOLTACgz" -E -o printer-is-shared=false |
|
| # Restart cups |
| # sudo launchctl unload /System/Library/LaunchDaemons/rushbrookrathbone.co.uk |
| # sudo launchctl load /System/Library/LaunchDaemons/rushbrookrathbone.co.uk |
|
|
| # DEBUG |
|
| # INFO |
| # rushbrookrathbone.co.uk |
| # rushbrookrathbone.co.uk |
|
| # rushbrookrathbone.co.uk |
| # rushbrookrathbone.co.uk?lpadmin+1 |
| # http://localhost/printers/? |
|
-
-
-