#!/bin/sh

. /lib/lsb/init-functions

log_action_begin_msg "Creating SSH keys"
if dpkg-reconfigure openssh-server ; then
    log_action_end_msg 0
else
    log_action_end_msg 1
fi
