Skip to content

Commit

Permalink
Merge pull request #235 from endersonmaia/PR-182-fix
Browse files Browse the repository at this point in the history
Fixed bug introduced in PR-182
  • Loading branch information
FooBarWidget committed Jul 16, 2015
2 parents 784d983 + e053f04 commit 14ec533
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions image/system_services.sh
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,10 @@ ln -s /etc/container_environment.sh /etc/profile.d/
$minimal_apt_get_install runit

## Install a syslog daemon and logrotate.
[ "$DISABLE_SYSLOG" -eq 0 ] && /bd_build/services/syslog-ng/syslog-ng.sh
[ "$DISABLE_SYSLOG" -eq 0 ] && /bd_build/services/syslog-ng/syslog-ng.sh || true

## Install the SSH server.
[ "$DISABLE_SSH" -eq 0 ] && /bd_build/services/sshd/sshd.sh
[ "$DISABLE_SSH" -eq 0 ] && /bd_build/services/sshd/sshd.sh || true

## Install cron daemon.
[ "$DISABLE_CRON" -eq 0 ] && /bd_build/services/cron/cron.sh
[ "$DISABLE_CRON" -eq 0 ] && /bd_build/services/cron/cron.sh || true

0 comments on commit 14ec533

Please sign in to comment.