changeset 943:e8400b792705

security/sudo: initial import, closes #1064
author David Demelier <markand@malikania.fr>
date Thu, 29 Aug 2019 23:15:00 +0200
parents 61707d92b6cb
children 6c6b6c4aab68
files security/sudo/sudo security/sudo/sudo.sh security/sudo/sudo.sha1
diffstat 3 files changed, 88 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/security/sudo/sudo	Thu Aug 29 23:15:00 2019 +0200
@@ -0,0 +1,7 @@
+#
+# /etc/pam.d/sudo -- PAM configuration file for sudo
+#
+
+auth            include system-auth
+account         include system-auth
+session         include system-auth
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/security/sudo/sudo.sh	Thu Aug 29 23:15:00 2019 +0200
@@ -0,0 +1,80 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+# TODO: add SELINUX support
+
+PKGNAME=sudo
+PKGVERSION=1.8.27
+PKGREVISION=1
+PKGLICENSE="ISC"
+PKGSUMMARY="program to give limited root privileges to users"
+PKGDOWNLOAD="https://www.sudo.ws/dist/$PKGNAME-$PKGVERSION.tar.gz"
+PKGDEPENDS=""
+PKGOPTIONS="NLS PAM"
+PKGPROTECT="etc/sudoers etc/pam.d/sudo"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${NLS:=yes}
+: ${PAM:=yes}
+
+if [ "$NLS" = "yes" ]; then
+	PKGDEPENDS="gettext $PKGDEPENDS"
+	with_nls="--enable-nls"
+else
+	with_nls="--disable-nls"
+fi
+
+if [ "$PAM" = "yes" ]; then
+	PKGDEPENDS="linux-pam $PKGDEPENDS"
+	with_pam="--with-pam"
+else
+	with_pam="--without-pam"
+fi
+
+build()
+{
+	rm -rf $PKGNAME-$PKGVERSION
+	tar xvf $PKGNAME-$PKGVERSION.tar.gz
+	cd $PKGNAME-$PKGVERSION
+
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--build=$CBUILD \
+		--host=$CHOST \
+		--prefix= \
+		--sbindir=/bin \
+		$with_nls \
+		$with_pam
+	make
+	make install DESTDIR=$DESTDIR
+	find $DESTDIR -type f -name "*.la" -delete
+
+	if [ "$PAM" = "yes" ]; then
+		install -Dm0600 ../sudo $DESTDIR/etc/pam.d/sudo
+	fi
+
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/security/sudo/sudo.sha1	Thu Aug 29 23:15:00 2019 +0200
@@ -0,0 +1,1 @@
+9dd0d21ec02da8a4a8bf86f496c3e909cb6d1636  sudo-1.8.27.tar.gz