View Single Post
  #6  
Old 08-23-2007, 08:57 PM
Marco_Polo Marco_Polo is offline
Registered User
 
Join Date: Feb 2007
Posts: 16
Okay, I've got it figured out.

Since the script is being executed by CopyJob instead of SuperDuper, delays only affect CopyJob. So I told SuperDuper to delay 5 minutes. Here's the code:
Code:
on beforeRunningCopy()
tell application "Finder"
	mount volume "smb://192.168.n.n/BACKUP_VOLUME"
	open file "BACKUP_VOLUME:Backup.dmg"
end tell

tell application "SuperDuper"
delay 300
end tell
end beforeRunningCopy
It'd be nice if SD would make automatic backups to regular .dmg files on a server without all this fooling around... why doesn't it?
Reply With Quote