|
@@ -47,6 +47,36 @@ ghost_variables=(GHOST_VERSION
|
47
|
47
|
DDNS_PROVIDER
|
48
|
48
|
MY_USERNAME)
|
49
|
49
|
|
|
50
|
+function ghost_replace_jquery {
|
|
51
|
+ sed -i "s|code.jquery.com/jquery-${previous_jquery_version}.min.js|$GHOST_DOMAIN_NAME/jquery-${jquery_version}.js|g" content/themes/casper/default.hbs
|
|
52
|
+ sed -i "s|code.jquery.com/jquery-${previous_jquery_version}.min.js|$GHOST_DOMAIN_NAME/jquery-${jquery_version}.js|g" core/server/data/migration/fixtures/004/01-move-jquery-with-alert.js
|
|
53
|
+ sed -i "s|code.jquery.com/jquery-${previous_jquery_version}.min.js|$GHOST_DOMAIN_NAME/jquery-${jquery_version}.js|g" node_modules/gscan/app/tpl/layouts/default.hbs
|
|
54
|
+}
|
|
55
|
+
|
|
56
|
+function ghost_remove_offsite_links {
|
|
57
|
+ cd /var/www/$GHOST_DOMAIN_NAME/htdocs
|
|
58
|
+
|
|
59
|
+ # remove google font links
|
|
60
|
+ # Note that the privacy options in config.js aren't sufficient to remove Google's tentacles
|
|
61
|
+ sed -i "s/fonts.googleapis.com/$GHOST_DOMAIN_NAME/g" content/themes/casper/default.hbs
|
|
62
|
+ sed -i "s/fonts.googleapis.com/$GHOST_DOMAIN_NAME/g" core/server/apps/amp/lib/views/amp.hbs
|
|
63
|
+
|
|
64
|
+ # copy jquery locally
|
|
65
|
+ previous_jquery_version='1.12.0'
|
|
66
|
+ jquery_version='1.12.4'
|
|
67
|
+ if [ ! -f /var/www/$GHOST_DOMAIN_NAME/htdocs/jquery-${jquery_version}.js ]; then
|
|
68
|
+ wget https://code.jquery.com/jquery-${jquery_version}.js
|
|
69
|
+ jquery_hash=$(sha256sum jquery-${jquery_version}.js | awk -F ' ' '{print $1}')
|
|
70
|
+ if [[ "$jquery_hash" != '430f36f9b5f21aae8cc9dca6a81c4d3d84da5175eaedcf2fdc2c226302cb3575' ]]; then
|
|
71
|
+ echo $'Unexpected jquery hash value'
|
|
72
|
+ exit 258442
|
|
73
|
+ fi
|
|
74
|
+ fi
|
|
75
|
+ ghost_replace_jquery
|
|
76
|
+ previous_jquery_version='1.11.3'
|
|
77
|
+ ghost_replace_jquery
|
|
78
|
+}
|
|
79
|
+
|
50
|
80
|
function ghost_replace_proprietary_services {
|
51
|
81
|
replace_file=$1
|
52
|
82
|
|
|
@@ -130,6 +160,7 @@ function upgrade_ghost {
|
130
|
160
|
ghost_replace_services
|
131
|
161
|
chown -R ghost: /var/www/${GHOST_DOMAIN_NAME}/htdocs
|
132
|
162
|
|
|
163
|
+ ghost_remove_offsite_links
|
133
|
164
|
systemctl restart ghost
|
134
|
165
|
}
|
135
|
166
|
|
|
@@ -361,6 +392,8 @@ function install_ghost {
|
361
|
392
|
echo '[Install]' >> /etc/systemd/system/ghost.service
|
362
|
393
|
echo 'WantedBy=multi-user.target' >> /etc/systemd/system/ghost.service
|
363
|
394
|
|
|
395
|
+ ghost_remove_offsite_links
|
|
396
|
+
|
364
|
397
|
systemctl enable ghost
|
365
|
398
|
systemctl daemon-reload
|
366
|
399
|
systemctl start ghost
|