post_install() { echo 'To get started you need to: - Enable tidy.so and allow_url_fopen in /etc/php/php.ini - Create a new mariadb user and a database: $ mysql -u root -p > create database wallabag; > GRANT ALL ON wallabag.* TO wallabag@localhost IDENTIFIED BY '"'mypassword'"'; - Initialize the database: $ mysql -u root -p wallabag < /usr/share/webapps/wallabag/install/mysql.sql - Create a config file: # cp /usr/share/webapps/wallabag/inc/poche/config.inc{.default,}.php - Adjust your prefered STORAGE_SERVER (mysql, sqlite, postgres) - Set the database credentials: STORAGE_SERVER, STORAGE_DB, STORAGE_USER, STORAGE_PASSWORD - *Optional*: Adjust the SALT value in config.inc.php (it was autogenerated during install) - Remove /usr/share/webapps/wallabag/install More info: http://doc.wallabag.org/en/Administrator/download_and_install.html' } post_upgrade() { echo 'After each upgrade you have to manually: - Remove the installation folder (/usr/share/webapps/wallabag/install) - Empty the cache folder (/usr/share/webapps/wallabag/cache) $ sudo -u http rm -rf /usr/share/webapps/wallabag/{install,cache/*}' }