1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/mastodon_ynh.git synced 2024-09-03 19:46:02 +02:00

Add libicu-dev and libidn11-dev

This commit is contained in:
nemsia 2017-07-24 01:15:15 +02:00
parent 1f948e706a
commit 0307451906
3 changed files with 3 additions and 7 deletions

View file

@ -43,9 +43,5 @@ sudo su - postgres <<COMMANDS
pg_dump --role=mastodon -U postgres --no-password mastodon_production > mastodon_db.sql
COMMANDS
ynh_backup "/var/lib/postgresql/${app}_db.sql" "${app}_db.sql"
<<<<<<< HEAD
#rm /var/lib/postgresql/mastodon_db.sql
=======
# Fix backup fail on yunohost 2.6
#ynh_secure_remove /var/lib/postgresql/mastodon_db.sql
>>>>>>> refs/remotes/YunoHost-Apps/master

View file

@ -41,7 +41,7 @@ ynh_app_setting_set $app language $language
sudo adduser $app --home /opt/$app --gecos "First Last,RoomNumber,WorkPhone,HomePhone" --disabled-password --disabled-login
# Install debian package
ynh_package_install imagemagick libpq-dev libxml2-dev libxslt1-dev file curl apt-transport-https pkg-config libprotobuf-dev protobuf-compiler
ynh_package_install imagemagick libpq-dev libxml2-dev libxslt1-dev file curl apt-transport-https pkg-config libprotobuf-dev protobuf-compiler libicu-dev libidn11-dev
# Install redis package
ynh_package_install redis-server redis-tools

View file

@ -65,7 +65,7 @@ if [[ $node_version =~ ^v4.*$ ]]; then
fi
# add additional package for release 1.4
ynh_package_install pkg-config libprotobuf-dev protobuf-compiler
ynh_package_install pkg-config libprotobuf-dev protobuf-compiler libicu-dev libidn11-dev
# Apply Mastodon upgrade
sudo su - $app <<COMMANDS
@ -73,7 +73,7 @@ pushd ~/live
bin/bundle install
yarn install --pure-lockfile
# For 1.4.1 -> 1.4.2 migration prepare_for_foreign_keys is needed
RAILS_ENV=production bundle exec rails mastodon:maintenance:prepare_for_foreign_keys
RAILS_ENV=production bundle exec rails mastodon:maintenance:prepare_for_foreign_keys
RAILS_ENV=production bundle exec rails assets:clean
RAILS_ENV=production bundle exec rails assets:precompile
RAILS_ENV=production bundle exec rails db:migrate