You've already forked mastodon-utils
							
							
				mirror of
				https://github.com/jakejarvis/mastodon-utils.git
				synced 2025-11-04 05:50:08 -05:00 
			
		
		
		
	save automatic backups to Linode bucket
This commit is contained in:
		
							
								
								
									
										15
									
								
								.editorconfig
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										15
									
								
								.editorconfig
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,15 @@
 | 
				
			|||||||
 | 
					# http://editorconfig.org
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					# this file is the top-most editorconfig file
 | 
				
			||||||
 | 
					root = true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[*]
 | 
				
			||||||
 | 
					charset = utf-8
 | 
				
			||||||
 | 
					end_of_line = lf
 | 
				
			||||||
 | 
					indent_style = space
 | 
				
			||||||
 | 
					indent_size = 2
 | 
				
			||||||
 | 
					trim_trailing_whitespace = true
 | 
				
			||||||
 | 
					insert_final_newline = true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					[*.conf]
 | 
				
			||||||
 | 
					indent_style = tab
 | 
				
			||||||
							
								
								
									
										2
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								.gitattributes
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,2 @@
 | 
				
			|||||||
 | 
					# Set default behavior to automatically normalize line endings.
 | 
				
			||||||
 | 
					* text=auto eol=lf
 | 
				
			||||||
							
								
								
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								.gitignore
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@@ -0,0 +1,4 @@
 | 
				
			|||||||
 | 
					# here be secrets
 | 
				
			||||||
 | 
					*.env*
 | 
				
			||||||
 | 
					!.env.example
 | 
				
			||||||
 | 
					*.pem
 | 
				
			||||||
@@ -11,7 +11,7 @@ Environment="MALLOC_ARENA_MAX=2"
 | 
				
			|||||||
Environment="LD_PRELOAD=libjemalloc.so"
 | 
					Environment="LD_PRELOAD=libjemalloc.so"
 | 
				
			||||||
# note: this env is also set in .env.production, but this service is started before file is read:
 | 
					# note: this env is also set in .env.production, but this service is started before file is read:
 | 
				
			||||||
Environment="DB_POOL=15"
 | 
					Environment="DB_POOL=15"
 | 
				
			||||||
ExecStart=/home/mastodon/.rbenv/shims/bundle exec sidekiq -c 15
 | 
					ExecStart=/home/mastodon/.rbenv/shims/bundle exec sidekiq -c $DB_POOL
 | 
				
			||||||
TimeoutSec=15
 | 
					TimeoutSec=15
 | 
				
			||||||
Restart=always
 | 
					Restart=always
 | 
				
			||||||
# Proc filesystem
 | 
					# Proc filesystem
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,8 +1,8 @@
 | 
				
			|||||||
#!/bin/bash
 | 
					#!/bin/bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# cronjob ran once per week at 3 AM on Monday; see https://crontab.guru/#0_3_*_*_1
 | 
					# cronjob ran every day at 3:15 AM; see https://crontab.guru/#15_3_*_*_*
 | 
				
			||||||
# syntax for crontab -e:
 | 
					# syntax for crontab -e:
 | 
				
			||||||
#   0 3 * * 1  bash -c "/home/mastodon/utils/scripts/backup.sh >> /home/mastodon/logs/cron.log 2>&1"
 | 
					#   15 3 * * *  bash -c "/home/mastodon/utils/scripts/backup.sh >> /home/mastodon/logs/cron.log 2>&1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
# exit when any step fails
 | 
					# exit when any step fails
 | 
				
			||||||
set -euo pipefail
 | 
					set -euo pipefail
 | 
				
			||||||
@@ -38,14 +38,25 @@ sudo cp /var/lib/redis/dump.rdb "$TEMP_DIR/redis.rdb"
 | 
				
			|||||||
echo "Backing up secrets..."
 | 
					echo "Backing up secrets..."
 | 
				
			||||||
sudo cp "$APP_ROOT/.env.production" "$TEMP_DIR/env.production"
 | 
					sudo cp "$APP_ROOT/.env.production" "$TEMP_DIR/env.production"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					echo "Backing up certs..."
 | 
				
			||||||
 | 
					sudo mkdir -p "$TEMP_DIR/certs"
 | 
				
			||||||
 | 
					sudo cp -r /etc/letsencrypt/{archive,live,renewal} "$TEMP_DIR/certs/"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "Compressing..."
 | 
					echo "Compressing..."
 | 
				
			||||||
ARCHIVE_DEST="$BACKUPS_ROOT/mastodon-$(date "+%Y.%m.%d-%H.%M.%S").tar.gz"
 | 
					ARCHIVE_DEST="$BACKUPS_ROOT/mastodon-$(date "+%Y.%m.%d-%H.%M.%S").tar.gz"
 | 
				
			||||||
sudo tar --owner=0 --group=0 -czvf "$ARCHIVE_DEST" -C "$TEMP_DIR" .
 | 
					sudo tar --owner=0 --group=0 -czvf "$ARCHIVE_DEST" -C "$TEMP_DIR" .
 | 
				
			||||||
sudo chown "$MASTODON_USER":"$MASTODON_USER" "$ARCHIVE_DEST"
 | 
					sudo chown "$MASTODON_USER":"$MASTODON_USER" "$ARCHIVE_DEST"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					echo "Removing temp files..."
 | 
				
			||||||
sudo rm -rf --preserve-root "$TEMP_DIR"
 | 
					sudo rm -rf --preserve-root "$TEMP_DIR"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "Saved to $ARCHIVE_DEST"
 | 
					echo "Saved to $ARCHIVE_DEST"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					if command -v linode-cli >/dev/null 2>&1; then
 | 
				
			||||||
 | 
					  echo "Uploading to S3..."
 | 
				
			||||||
 | 
					  sudo linode-cli obj put "$ARCHIVE_DEST" jarvis-backup
 | 
				
			||||||
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo "🎉 done! (keep this archive safe!)"
 | 
					echo "🎉 done! (keep this archive safe!)"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
echo -e "\n===== backup.sh: finished at $(date '+%Y-%m-%d %H:%M:%S') =====\n"
 | 
					echo -e "\n===== backup.sh: finished at $(date '+%Y-%m-%d %H:%M:%S') =====\n"
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user