* 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
21 lines
235 B
Bash
Executable File
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
|