Move all to deprecated folder.
This commit is contained in:
11
deprecated/firmware/buildroot/package/sudo/Config.in
Normal file
11
deprecated/firmware/buildroot/package/sudo/Config.in
Normal file
@@ -0,0 +1,11 @@
|
||||
config BR2_PACKAGE_SUDO
|
||||
bool "sudo"
|
||||
# uses fork()
|
||||
depends on BR2_USE_MMU
|
||||
help
|
||||
Sudo is a program designed to allow a sysadmin to give
|
||||
limited root privileges to users and log root activity. The
|
||||
basic philosophy is to give as few privileges as possible
|
||||
but still allow people to get their work done.
|
||||
|
||||
http://www.sudo.ws/sudo/
|
||||
2
deprecated/firmware/buildroot/package/sudo/sudo.hash
Normal file
2
deprecated/firmware/buildroot/package/sudo/sudo.hash
Normal file
@@ -0,0 +1,2 @@
|
||||
# From: http://www.sudo.ws/download.html
|
||||
sha256 4316381708324da8b6cb151f655c1a11855207c7c02244d8ffdea5104d7cc308 sudo-1.8.15.tar.gz
|
||||
46
deprecated/firmware/buildroot/package/sudo/sudo.mk
Normal file
46
deprecated/firmware/buildroot/package/sudo/sudo.mk
Normal file
@@ -0,0 +1,46 @@
|
||||
################################################################################
|
||||
#
|
||||
# sudo
|
||||
#
|
||||
################################################################################
|
||||
|
||||
SUDO_VERSION = 1.8.15
|
||||
SUDO_SITE = http://www.sudo.ws/sudo/dist
|
||||
SUDO_LICENSE = ISC BSD-3c
|
||||
SUDO_LICENSE_FILES = doc/LICENSE
|
||||
# This is to avoid sudo's make install from chown()ing files which fails
|
||||
SUDO_INSTALL_TARGET_OPTS = INSTALL_OWNER="" DESTDIR="$(TARGET_DIR)" install
|
||||
SUDO_CONF_OPTS = \
|
||||
--without-lecture \
|
||||
--without-sendmail \
|
||||
--without-umask \
|
||||
--with-logging=syslog \
|
||||
--without-interfaces \
|
||||
--with-env-editor
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LINUX_PAM),y)
|
||||
define SUDO_INSTALL_PAM_CONF
|
||||
$(INSTALL) -D -m 0644 package/sudo/sudo.pam $(TARGET_DIR)/etc/pam.d/sudo
|
||||
endef
|
||||
|
||||
SUDO_DEPENDENCIES += linux-pam
|
||||
SUDO_CONF_OPTS += --with-pam
|
||||
SUDO_POST_INSTALL_TARGET_HOOKS += SUDO_INSTALL_PAM_CONF
|
||||
else
|
||||
SUDO_CONF_OPTS += --without-pam
|
||||
endif
|
||||
|
||||
# mksigname/mksiglist needs to run on build host to generate source files
|
||||
define SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST
|
||||
$(MAKE) $(HOST_CONFIGURE_OPTS) \
|
||||
CPPFLAGS="$(HOST_CPPFLAGS) -I../../include -I../.." \
|
||||
-C $(@D)/lib/util mksigname mksiglist
|
||||
endef
|
||||
|
||||
SUDO_POST_CONFIGURE_HOOKS += SUDO_BUILD_MKSIGNAME_MKSIGLIST_HOST
|
||||
|
||||
define SUDO_PERMISSIONS
|
||||
/usr/bin/sudo f 4755 0 0 - - - - -
|
||||
endef
|
||||
|
||||
$(eval $(autotools-package))
|
||||
12
deprecated/firmware/buildroot/package/sudo/sudo.pam
Normal file
12
deprecated/firmware/buildroot/package/sudo/sudo.pam
Normal file
@@ -0,0 +1,12 @@
|
||||
auth sufficient pam_rootok.so
|
||||
auth required pam_wheel.so use_uid
|
||||
auth required pam_env.so
|
||||
auth required pam_unix.so nullok
|
||||
|
||||
account required pam_unix.so
|
||||
|
||||
password required pam_unix.so nullok
|
||||
|
||||
session required pam_limits.so
|
||||
session required pam_env.so
|
||||
session required pam_unix.so
|
||||
Reference in New Issue
Block a user