* Added shadow as dependency (for useradd and groupadd) * Removed old usher script * Modified client and server usher to not use chroot
21 lines
237 B
Bash
Executable File
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
|