diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-11-02 16:00:53 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-11-02 16:00:53 -0300 |
commit | f6252d7e90db77f5715df1c23e19ede1958cb0ef (patch) | |
tree | db8f043431cd7fde8b01fe3876d822f7ba13c39e /social | |
parent | f42994180fe33b57258eb41c100618e23f35252b (diff) | |
download | abslibre-f6252d7e90db77f5715df1c23e19ede1958cb0ef.tar.gz abslibre-f6252d7e90db77f5715df1c23e19ede1958cb0ef.tar.bz2 abslibre-f6252d7e90db77f5715df1c23e19ede1958cb0ef.zip |
social/monkeysphere-0.35-2
Diffstat (limited to 'social')
-rw-r--r-- | social/monkeysphere/PKGBUILD | 2 | ||||
-rw-r--r-- | social/monkeysphere/monkeysphere.install | 7 |
2 files changed, 6 insertions, 3 deletions
diff --git a/social/monkeysphere/PKGBUILD b/social/monkeysphere/PKGBUILD index c804b8409..ba869598e 100644 --- a/social/monkeysphere/PKGBUILD +++ b/social/monkeysphere/PKGBUILD @@ -4,7 +4,7 @@ # $Id: PKGBUILD 264 2010-11-10 00:57:53Z shtrom $ pkgname=monkeysphere pkgver=0.35 -pkgrel=1 +pkgrel=2 pkgdesc="Leverage the OpenPGP web of trust for OpenSSH and Web authentication" arch=('i686' 'x86_64') url="http://web.monkeysphere.info/" diff --git a/social/monkeysphere/monkeysphere.install b/social/monkeysphere/monkeysphere.install index cc31e728d..2013f9f41 100644 --- a/social/monkeysphere/monkeysphere.install +++ b/social/monkeysphere/monkeysphere.install @@ -12,7 +12,9 @@ post_install() { echo ">>> Creating monkeysphere user and group and setting permissions..." getent group monkeysphere >/dev/null || usr/sbin/groupadd monkeysphere getent passwd monkeysphere >/dev/null || usr/sbin/useradd -c 'Monkeysphere WoT server identification tool' -g monkeysphere -d '/var/lib/monkeysphere' -s /bin/bash monkeysphere - chown monkeysphere:monkeysphere /var/lib/monkeysphere + +# Should be root:root for sshd to work + chown root:root /var/lib/monkeysphere } # arg 1: the new package version @@ -24,7 +26,8 @@ pre_upgrade() { # arg 1: the new package version # arg 2: the old package version post_upgrade() { - /bin/true +# Should be root:root for sshd to work + chown root:root /var/lib/monkeysphere } # arg 1: the old package version |