Files
openssh/SNAP/usher-client
Jay Larson ad3ba89a0c The following changes were made:
* Added shadow as dependency (for useradd and groupadd)
  * Removed old usher script
  * Modified client and server usher to not use chroot
2017-11-26 13:34:08 -06:00

21 lines
237 B
Bash
Executable File

#!/bin/bash
set -e
case $1 in
preinst)
exit 0
;;
postinst)
if [ ! -f /etc/ssh/ssh_config ]; then
cp /usr/share/openssh/ssh_config /etc/ssh
fi
;;
prerm)
exit 0
;;
postrm)
exit 0
;;
esac