Jeff Geerling

Results 1858 comments of Jeff Geerling

Probably use one of the following for the uploading: - https://github.com/andreafabrizi/Dropbox-Uploader - https://rclone.org/dropbox/ Note security caveats of storing API keys for Dropbox (or passwords, ick!) on the Pi...

For file copying, might be easier to just use macOS's built-in 'Remote Login' (SSH), which allows me to use `rsync` to do the copy, like: ``` rsync -avz /home/pi/pi-timelapse/series-2019-04-22_12-30-04/ myaccount@mac-ip-address:/Users/myaccount/Downloads/timelapse/series-2019-04-22_12-30-04/...

What I'm using now: ``` rsync -qaP --include-from=rsync-includes --exclude='*' /home/pi/pi-timelapse/ geerlingguy@my-mac-here:/Volumes/LargeVolumeHere/timelapse-directory ``` And that rsync-includes file just contains: ``` series** ```

Yeah; the gif creation might or might not be working as-is right now. I originally created that in the first iteration of the script, but didn't test it much after...

Well... haven't had to change any of the defaults; the script works out of the box with the HQ camera so far (yay for consistent APIs!). I'm going to do...

I'd be willing to add a vars file for Arch if someone submits a PR, but I won't be doing it myself.

See: https://www.jeffgeerling.com/blog/2022/aptkey-deprecated-debianubuntu-how-fix-ansible

At the very least, it would be nice to have documentation around the best way to do upgrades. Kubernetes upgrades are a pain regardless of how automated you can make...

Approved by someone who's not a maintainer ;) I should note that I don't personally use elasticsearch anymore (moved on to other stacks), so this role is in maintenance mode....

Thank you for the PR, and sorry about not merging it sooner! I decided to merge https://github.com/geerlingguy/ansible-for-devops/pull/526 since it is using the latest version and should be valid a bit...