Skip to content

Commit

Permalink
Merge branch 'release/v2.0.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
mettke committed Jun 20, 2019
2 parents aae61df + 13a6655 commit 559a2f2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
6 changes: 3 additions & 3 deletions docker/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ if [ `whoami` == 'keys-sync' ]; then
echo "Permissions must be $(id -u keys-sync):$(id -g keys-sync) with at least 400"
exit 1
fi
if ! grep "^timeout_util = BusyBox$" /ska/config/config.ini > /dev/null; then
echo "timeout_util must be set to BusyBox."
echo "Change it to: timeout_util = BusyBox"
if ! grep "^timeout_util = GNU coreutils$" /ska/config/config.ini > /dev/null; then
echo "timeout_util must be set to GNU coreutils."
echo "Change it to: timeout_util = GNU coreutils"
exit 1
fi
elif [ $(id -u) = 0 ]; then
Expand Down
1 change: 1 addition & 0 deletions examples/nginx-local/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ services:
- ../shared/config-local/:/ska/config/:rw
- ../shared/ssmtp.conf:/etc/ssmtp/ssmtp.conf:ro
- ./public_html:/public_html:rw
- ../../:/ska:rw
networks:
- net

Expand Down
2 changes: 1 addition & 1 deletion templates/base.php
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
</div>
<div id="footer">
<div class="container">
<p class="text-muted credit"><?php out($web_config['footer'], ESC_NONE)?> (v2.0.5)</p>
<p class="text-muted credit"><?php out($web_config['footer'], ESC_NONE)?> (v2.0.6)</p>
<?php if($this->get('active_user') && $this->get('active_user')->developer) { ?>
<?php } ?>
</div>
Expand Down

0 comments on commit 559a2f2

Please sign in to comment.