Live data from Hacker News

Show HN: Backup Scheduler

github.com

1–4 of 4 posts

Re: Show HN: Backup Scheduler

#2
Brilliantly simple, and gets the job done. Could you add notes for how to restore from backup? (I know, I know... All I have to do is read S3's docs and figure out s3util or whatever, but I'm knee-deep in Lisp and would prefer to keep my precious remaining vacation time that way.)

Re: Show HN: Backup Scheduler

#3

Brilliantly simple, and gets the job done. Could you add notes for how to restore from backup? (I know, I know... All I have to do is read S3's docs and figure out s3util or whatever, but I'm knee-deep in Lisp and would prefer to keep my precious remaining vacation time that way.)

Sure, added the docs here https://github.com/divyenduz/backup-scheduler#restore

Basically, you can just manually call the sync command with s3 bucket and local directory arguments in reverse or use aws s3 cp --recursive

Re: Show HN: Backup Scheduler

#4

Brilliantly simple, and gets the job done. Could you add notes for how to restore from backup? (I know, I know... All I have to do is read S3's docs and figure out s3util or whatever, but I'm knee-deep in Lisp and would prefer to keep my precious remaining vacation time that way.)

Sure, added the docs here https://github.com/divyenduz/backup-scheduler#restore Basically, you can just manually call the sync command with s3 bucket and local directory arguments in reverse or use aws s3 cp --recursive

Thanks!