-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy paths3_prod_push.sh
28 lines (25 loc) · 920 Bytes
/
s3_prod_push.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/usr/bin/env bash
# -*- coding: utf8 -*-
#
# Copyright (c) 2016 unfoldingWord
# http://creativecommons.org/licenses/MIT/
# See LICENSE file for details.
#
# Contributors:
# Jesse Griffin <[email protected]>
echo start script
SOURCE="public/"
BKT="s3://dalafarm.vn/"
EXCLUDES="s3_excludes"
openssl aes-256-cbc -K $encrypted_72893ab80126_key -iv $encrypted_72893ab80126_iv -in secrets.tar.enc -out secrets.tar -d
tar xvf secrets.tar
echo unzip
s3cmd -c s3cfg-prod sync -M -F \
--delete-removed \
--no-mime-magic \
--exclude-from "$EXCLUDES" \
--add-header="Cache-Control:max-age=21600" \
"$SOURCE" "$BKT"
curl https://www.google.com/webmasters/sitemaps/ping?sitemap=http://dalafarm.vn/sitemap.xml
curl https://www.google.com/webmasters/sitemaps/ping?sitemap=http://dalafarm.vn/vi/sitemap.xml
curl https://www.google.com/webmasters/sitemaps/ping?sitemap=http://dalafarm.vn/en/sitemap.xml