security/su-exec: New port: Switch user and group id and exec
su-exec is a simple tool that will simply execute a program with different privileges. The program will be executed directly and not run as a child, like su and sudo does, which avoids TTY and signal issues. WWW: https://github.com/ncopa/su-exec PR: 272867
This commit is contained in:
parent
06c06ad9fa
commit
4ec063fe52
4 changed files with 41 additions and 0 deletions
|
@ -1285,6 +1285,7 @@
|
|||
SUBDIR += sudo
|
||||
SUBDIR += sudoscript
|
||||
SUBDIR += super
|
||||
SUBDIR += su-exec
|
||||
SUBDIR += suricata
|
||||
SUBDIR += swatchdog
|
||||
SUBDIR += tailscale
|
||||
|
|
33
security/su-exec/Makefile
Normal file
33
security/su-exec/Makefile
Normal file
|
@ -0,0 +1,33 @@
|
|||
PORTNAME= su-exec
|
||||
DISTVERSIONPREFIX= v
|
||||
DISTVERSION= 0.2
|
||||
CATEGORIES= security
|
||||
|
||||
MAINTAINER= DtxdF@disroot.org
|
||||
COMMENT= Switch user and group id and exec
|
||||
WWW= https://github.com/ncopa/su-exec
|
||||
|
||||
LICENSE= MIT
|
||||
LICENSE_FILE= ${WRKSRC}/LICENSE
|
||||
|
||||
FLAVORS= default static
|
||||
default_CONFLICTS_INSTALL= su-exec-static
|
||||
static_PKGNAMESUFFIX= -static
|
||||
static_CONFLICTS_INSTALL= su-exec
|
||||
|
||||
USE_GITHUB= yes
|
||||
GH_ACCOUNT= ncopa
|
||||
|
||||
.if ${FLAVOR:U} == static
|
||||
LDFLAGS+= -static
|
||||
.endif
|
||||
|
||||
PLIST_FILES= bin/su-exec
|
||||
|
||||
do-build:
|
||||
cd ${WRKSRC} && ${CC} ${CPPFLAGS} ${CFLAGS} ${LDFLAGS} -o su-exec su-exec.c
|
||||
|
||||
do-install:
|
||||
${INSTALL_PROGRAM} ${WRKSRC}/su-exec ${STAGEDIR}${PREFIX}/bin
|
||||
|
||||
.include <bsd.port.mk>
|
3
security/su-exec/distinfo
Normal file
3
security/su-exec/distinfo
Normal file
|
@ -0,0 +1,3 @@
|
|||
TIMESTAMP = 1690896135
|
||||
SHA256 (ncopa-su-exec-v0.2_GH0.tar.gz) = ec4acbd8cde6ceeb2be67eda1f46c709758af6db35cacbcde41baac349855e25
|
||||
SIZE (ncopa-su-exec-v0.2_GH0.tar.gz) = 2426
|
4
security/su-exec/pkg-descr
Normal file
4
security/su-exec/pkg-descr
Normal file
|
@ -0,0 +1,4 @@
|
|||
su-exec is a simple tool that will simply execute a program with
|
||||
different privileges. The program will be executed directly and not
|
||||
run as a child, like su and sudo does, which avoids TTY and signal
|
||||
issues.
|
Loading…
Reference in a new issue