Merge branch 'stretch' of https://github.com/bashrc/freedombone
This commit is contained in:
commit
962cb6cf13
|
@ -37,7 +37,7 @@ SHOW_ICANN_ADDRESS_ON_ABOUT=0
|
|||
CRYPTPAD_ONION_PORT=8119
|
||||
CRYPTPAD_PORT=9003
|
||||
CRYPTPAD_REPO="https://github.com/xwiki-labs/cryptpad"
|
||||
CRYPTPAD_COMMIT='76e69f0ba85b0e3e21cad2c3eb0012c2429d4bb8'
|
||||
CRYPTPAD_COMMIT='0b69973c179efc6f770a1127f07f67de3d6724d1'
|
||||
CRYPTPAD_DIR=/etc/cryptpad
|
||||
|
||||
cryptpad_variables=(ONION_ONLY)
|
||||
|
|
|
@ -46,6 +46,12 @@ ghost_variables=(GHOST_DOMAIN_NAME
|
|||
DDNS_PROVIDER
|
||||
MY_USERNAME)
|
||||
|
||||
function ghost_bust {
|
||||
# kill the started ghost process
|
||||
kill_pid=$(ps aux | grep "ghost run" | awk -F ' ' '{print $2}' | head -n 1)
|
||||
kill $kill_pid
|
||||
}
|
||||
|
||||
function logging_on_ghost {
|
||||
echo -n ''
|
||||
}
|
||||
|
@ -182,10 +188,14 @@ function upgrade_ghost {
|
|||
if [ ! -d /var/www/$GHOST_DOMAIN_NAME/htdocs ]; then
|
||||
return
|
||||
fi
|
||||
|
||||
systemctl stop ghost
|
||||
|
||||
cd /var/www/$GHOST_DOMAIN_NAME/htdocs
|
||||
|
||||
npm i -g ghost-cli
|
||||
/usr/local/bin/ghost update
|
||||
ghost_bust
|
||||
|
||||
ghost_replace_services
|
||||
ghost_remove_offsite_links
|
||||
|
@ -395,9 +405,7 @@ function install_ghost {
|
|||
|
||||
ghost install local --port ${GHOST_PORT}
|
||||
|
||||
# kill the started ghost process
|
||||
kill_pid=$(ps aux | grep "ghost run" | awk -F ' ' '{print $2}' | head -n 1)
|
||||
kill $kill_pid
|
||||
ghost_bust
|
||||
|
||||
# NOTE: this has to be http, not https
|
||||
sed -i "s|\"url\":|\"url\": \"http://${GHOST_DOMAIN_NAME}/\",|g" /var/www/${GHOST_DOMAIN_NAME}/htdocs/config.development.json
|
||||
|
|
Loading…
Reference in New Issue