Minor cleaning of comments

Bump to SEQREV 2
This commit is contained in:
2019-04-09 11:02:36 +01:00
parent 0f206660a6
commit 0789a586d2

View File

@@ -10,18 +10,19 @@ librePackages="fping git graphviz imagemagick mtr-tiny nmap python-memcache pyth
step_1_info() { echo "Updating apt"; } step_1_info() { echo "Updating apt"; }
step_1_alias() { ALIAS="install"; }
step_1() { step_1() {
apt update apt update
} }
step_2_info() { echo -e "Installing $toolname dependencies: $librePackages\n"; } step_2_info() { echo -e "Installing $toolname dependencies: $librePackages"; }
step_2() { step_2() {
apt install $librePackages apt install $librePackages
saveReturn $? saveReturn $?
endReturn endReturn
} }
step_3_info() { echo -e "Installing -t buster PHP related packages\n$librePhpDeps\n"; } step_3_info() { echo -e "Installing -t buster PHP related packages:\n $librePhpDeps"; }
step_3() { step_3() {
apt -t buster install $librePhpDeps apt -t buster install $librePhpDeps
saveReturn $? saveReturn $?
@@ -102,7 +103,7 @@ step_12() {
echo "Ensure date.timezone is set in php.ini to your preferred time zone. See http://php.net/manual/en/timezones.php for a list of supported timezones. Valid examples are: \"America/New_York\", \"Europe/Berlin\", \"Etc/UTC\"." echo "Ensure date.timezone is set in php.ini to your preferred time zone. See http://php.net/manual/en/timezones.php for a list of supported timezones. Valid examples are: \"America/New_York\", \"Europe/Berlin\", \"Etc/UTC\"."
echo echo
echo "vi /etc/php/7.3/fpm/conf.d/90-custom_pi.ini" echo "vi /etc/php/7.3/fpm/conf.d/90-custom_pi.ini"
echo "vi /etc/php/7.3/cli/php.ini" echo "vi /etc/php/7.3/cli/conf.d/90-custom_pi.ini"
echo echo
echo "-------------------------------------------" echo "-------------------------------------------"
echo "date.timezone = Europe/Berlin" echo "date.timezone = Europe/Berlin"
@@ -134,7 +135,7 @@ step_42() {
} }
# Sequence Revision # Sequence Revision
VERSION_SEQREV=1 VERSION_SEQREV=2
# Workaround when called from different directory # Workaround when called from different directory
# Not needed when path to sequencer is absolut # Not needed when path to sequencer is absolut