1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-02-17 11:54:22 +01:00

fix upgrade script for elastic installed on host system

This commit is contained in:
Sylvain 2018-03-29 10:06:03 +02:00
parent abad2a88c1
commit ffcc8f958f
2 changed files with 3 additions and 5 deletions

View File

@ -145,9 +145,7 @@ This procedure is not easy to follow so if you don't need to write some code for
11. You should now be able to access your local development FabManager instance by accessing `http://localhost:3000` in your web browser. 11. You should now be able to access your local development FabManager instance by accessing `http://localhost:3000` in your web browser.
12. You can login as the default administrator using the following credentials: 12. You can login as the default administrator using the credentials defined previously.
- user: admin@fab-manager.com
- password: adminadmin
13. Email notifications will be caught by MailCatcher. 13. Email notifications will be caught by MailCatcher.
To see the emails sent by the platform, open your web browser at `http://localhost:1080` to access the MailCatcher interface. To see the emails sent by the platform, open your web browser at `http://localhost:1080` to access the MailCatcher interface.

View File

@ -182,8 +182,8 @@ upgrade_classic()
then then
# Debian compatible # Debian compatible
wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add - wget -qO - https://packages.elastic.co/GPG-KEY-elasticsearch | sudo apt-key add -
echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" | sudo tee -a /etc/apt/sources.list.d/elasticsearch-2.x.list echo "deb http://packages.elastic.co/elasticsearch/2.x/debian stable main" | sudo tee /etc/apt/sources.list.d/elasticsearch-2.x.list
sudo apt-get update && sudo apt-get upgrade sudo apt-get update && sudo apt-get install --only-upgrade elasticsearch
fi fi
fi fi
;; ;;