Compare commits

..

11 Commits

Author SHA1 Message Date
f7d8a5c541 Added Kesennuma Isaribi photo
All checks were successful
continuous-integration/drone/push Build is passing
2025-03-16 13:21:30 +00:00
516cc3908f Add a kaki photo 2025-03-16 13:21:30 +00:00
d80308cb9d Add mu2 photo 2025-03-16 13:21:30 +00:00
6ee3513d2f Add 2024/09/30 Tohno photo 2025-03-16 13:21:30 +00:00
7022273342 Update the last modified date of 2024/04/25 Fukuoka. 2025-03-16 13:21:30 +00:00
636f903ca3 Update 2024/04/25 Fukuoka photo 2025-03-16 13:21:30 +00:00
d724284ed0 Add 2024/04/25 fukuoka photo 2025-03-16 13:21:30 +00:00
bf159b0b37 Add 2024/01/26 Manila photo 2025-03-16 13:21:30 +00:00
bd2eeb83c1 Modify 2023/12/26 Khao san road 2025-03-16 13:21:30 +00:00
8f2c290b95 Merge pull request 'Change the destination IP address for the Rake tasks' (#6) from destination-address-change-tasks into main
All checks were successful
continuous-integration/drone/push Build is passing
Reviewed-on: #6
2025-02-08 11:42:40 +00:00
49e5f4633d Change the destination IP address for the Rake tasks
All checks were successful
continuous-integration/drone/push Build is passing
2025-02-08 20:40:57 +09:00
2 changed files with 6 additions and 6 deletions

View File

@ -10,8 +10,8 @@ task :prod => [:init, :prep, :tcard] do
sh 'find public/ -type f | egrep "\.(css|js|png|jpg|html|JPG|PNG|CSS|JS|HTML)$" | xargs -n 1 -i% -P 0 sh -c "cp % %.bk && gzip % && mv %.bk %"'
sh 'ssh -p 10022 webadm@10.0.1.222 "rm -rf /var/www/blog/*"'
sh 'ssh -p 10022 webadm@10.0.1.222 "rm -rf /home/webadm/works/public/*"'
sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.222:/var/www/blog'
sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.222:/home/webadm/works/public'
sh 'ssh -p 10022 webadm@10.0.1.96 "rm -rf /var/www/blog/*"'
sh 'ssh -p 10022 webadm@10.0.1.96 "rm -rf /home/webadm/works/public/*"'
sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.96:/var/www/blog'
sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.96:/home/webadm/works/public'
end

View File

@ -10,6 +10,6 @@ task :stag => [:init, :prep, :tcard] do
sh 'find public/ -type f | egrep "\.(css|js|png|jpg|html|JPG|PNG|CSS|JS|HTML)$" | xargs -n 1 -i% -P 0 sh -c "cp % %.bk && gzip % && mv %.bk %"'
sh 'ssh -p 10022 webadm@10.0.1.166 "rm -rf /var/www/test/*"'
sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.222:/var/www/test'
sh 'ssh -p 10022 webadm@10.0.1.96 "rm -rf /var/www/test/*"'
sh 'rsync -e "ssh -p 10022" -rltvz --omit-dir-times --delete public/ webadm@10.0.1.96:/var/www/test'
end