openssh: fix previous again... use echo -e.
This commit is contained in:
parent
db7a77c0f6
commit
7f54eb6008
1 changed files with 2 additions and 2 deletions
|
@ -3,7 +3,7 @@ _desc="The OpenSSH implementation of SSH protocol"
|
||||||
|
|
||||||
pkgname=openssh
|
pkgname=openssh
|
||||||
version=6.6p1
|
version=6.6p1
|
||||||
revision=4
|
revision=5
|
||||||
build_style=gnu-configure
|
build_style=gnu-configure
|
||||||
configure_args="--without-tcp-wrappers --datadir=/usr/share/openssh
|
configure_args="--without-tcp-wrappers --datadir=/usr/share/openssh
|
||||||
--sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody
|
--sysconfdir=/etc/ssh --without-selinux --with-privsep-user=nobody
|
||||||
|
@ -37,7 +37,7 @@ post_install() {
|
||||||
# Disable pam_cracklib
|
# Disable pam_cracklib
|
||||||
sed '/pam_cracklib.*/d' -i ${DESTDIR}/etc/pam.d/sshd
|
sed '/pam_cracklib.*/d' -i ${DESTDIR}/etc/pam.d/sshd
|
||||||
# Enable pam_systemd.so by default.
|
# Enable pam_systemd.so by default.
|
||||||
printf "\-session\trequired\tpam_systemd.so\n" >> ${DESTDIR}/etc/pam.d/sshd
|
echo -e "-session\trequired\tpam_systemd.so\n" >> ${DESTDIR}/etc/pam.d/sshd
|
||||||
}
|
}
|
||||||
|
|
||||||
openssh-server_package() {
|
openssh-server_package() {
|
||||||
|
|
Loading…
Reference in a new issue