generated from nhcarrigan/template
Some checks failed
Code Analysis / SonarQube (push) Failing after 48s
We're moving it to its own repo.
10 lines
321 B
Bash
Executable File
10 lines
321 B
Bash
Executable File
#! /usr/bin/bash
|
|
|
|
dirs=("bsky" "chat" "games" "link-redirector" "testimonials" "manual" "sitemap" "music" "books");
|
|
|
|
for dir in "${dirs[@]}"; do
|
|
rsync -av $dir prod:/home/nhcarrigan
|
|
echo "Synced $dir"
|
|
done
|
|
|
|
echo "mail/index.html must be manually synced to mail:/home/user-data/www/default by a user with sudo access." |