Files
openssh/SNAP/usher-client
Jay Larson efba61d10d The following changes were made:
* Modified Makefile to work with /bin/sh
  * Added REPO to Makefile.client and Makefile.server
  * Modified usher-client and usher-server to use /bin/sh
2018-03-30 09:36:15 -05:00

21 lines
235 B
Bash
Executable File

#!/bin/sh
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