mirror of
https://github.com/YunoHost-Apps/kanboard_ynh.git
synced 2024-09-03 19:36:17 +02:00
10 lines
189 B
Bash
10 lines
189 B
Bash
#!/bin/bash
|
|
#
|
|
# Common variables
|
|
#
|
|
|
|
if [ "$(lsb_release --codename --short)" == "jessie" ]; then
|
|
pkg_dependencies="php5-gd"
|
|
else
|
|
pkg_dependencies="php-gd php-zip php-dom php-mbstring"
|
|
fi
|