# HG changeset patch # User Pascal Bellard # Date 1384712031 0 # Node ID 3ef10cee166573181c6928f2cb7eb13dc1c8045d # Parent dc0132468c26b95690c52d53942142eabf93d6d1 util-linux-flock: fix pre_install diff -r dc0132468c26 -r 3ef10cee1665 cyrus-imapd/receipt --- a/cyrus-imapd/receipt Sun Nov 17 16:55:13 2013 +0100 +++ b/cyrus-imapd/receipt Sun Nov 17 18:13:51 2013 +0000 @@ -109,6 +109,11 @@ Or add $PACKAGE to RUN_DAEMONS in /etc/rcS.conf ---- EOF + + # A security hole with ssh... + [ -f $1/etc/ssh/sshd_config ] && + ! grep -q cyrus $1/etc/ssh/sshd_config && + echo "DenyUsers cyrus" >> $1/etc/ssh/sshd_config } post_remove() diff -r dc0132468c26 -r 3ef10cee1665 python-qrcode/receipt --- a/python-qrcode/receipt Sun Nov 17 16:55:13 2013 +0100 +++ b/python-qrcode/receipt Sun Nov 17 18:13:51 2013 +0000 @@ -11,7 +11,7 @@ WEB_SITE="https://pypi.python.org/pypi/qrcode" WGET_URL="https://pypi.python.org/packages/source/${SOURCE:0:1}/$SOURCE/$TARBALL" -DEPENDS="python python-pil" +DEPENDS="python python-pil python-six" BUILD_DEPENDS="python-dev python wget setuptools" # Rules to configure and make the package. diff -r dc0132468c26 -r 3ef10cee1665 util-linux-flock/receipt --- a/util-linux-flock/receipt Sun Nov 17 16:55:13 2013 +0100 +++ b/util-linux-flock/receipt Sun Nov 17 18:13:51 2013 +0000 @@ -21,10 +21,10 @@ # Overlap busybox pre_install() { - rm -f $1/usr/bin/blkid + rm -f $1/usr/bin/flock } post_remove() { - ln -s /bin/busybox /usr/bin/blkid + ln -s /bin/busybox /usr/bin/flock }