From 94731625b42d0dfc0fd5111482938584b40c7478 Mon Sep 17 00:00:00 2001 From: Max Rees Date: Sun, 21 Jul 2019 16:49:33 -0400 Subject: system/*: use useradd, groupadd instead of adduser, addgroup --- system/abuild/APKBUILD | 2 +- system/abuild/abuild.pre-install | 2 +- system/at/APKBUILD | 2 +- system/at/at.pre-install | 4 ++-- system/fcron/APKBUILD | 2 +- system/fcron/fcron.pre-install | 4 ++-- 6 files changed, 8 insertions(+), 8 deletions(-) diff --git a/system/abuild/APKBUILD b/system/abuild/APKBUILD index ff09dbd2f..bfb81d357 100644 --- a/system/abuild/APKBUILD +++ b/system/abuild/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: A. Wilcox pkgname=abuild pkgver=3.3.1 -pkgrel=1 +pkgrel=2 pkgdesc="Script to build APK packages" url="https://code.foxkit.us/adelie/aports" arch="all" diff --git a/system/abuild/abuild.pre-install b/system/abuild/abuild.pre-install index fd3d39a36..169982d83 100644 --- a/system/abuild/abuild.pre-install +++ b/system/abuild/abuild.pre-install @@ -1,5 +1,5 @@ #!/bin/sh -addgroup -S abuild 2>/dev/null +groupadd -r abuild 2>/dev/null exit 0 diff --git a/system/at/APKBUILD b/system/at/APKBUILD index d4bdb4f2e..a50d7fb77 100644 --- a/system/at/APKBUILD +++ b/system/at/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: A. Wilcox pkgname=at pkgver=3.1.23 -pkgrel=1 +pkgrel=2 pkgdesc="Delayed job execution and batch processing daemon" url="https://packages.qa.debian.org/a/at.html" arch="all" diff --git a/system/at/at.pre-install b/system/at/at.pre-install index 78aa4bcf1..1d92862db 100644 --- a/system/at/at.pre-install +++ b/system/at/at.pre-install @@ -1,6 +1,6 @@ #!/bin/sh -addgroup -S at 2>/dev/null -adduser -S -D -H -s /bin/false -G at -g at at 2>/dev/null +groupadd -r at 2>/dev/null +useradd -c at -s /sbin/nologin -g at -r at 2>/dev/null exit 0 diff --git a/system/fcron/APKBUILD b/system/fcron/APKBUILD index 79f12c416..15f9c2713 100644 --- a/system/fcron/APKBUILD +++ b/system/fcron/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: A. Wilcox pkgname=fcron pkgver=3.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="periodical command scheduler for systems not always up" url="http://fcron.free.fr/" pkgusers="fcron" diff --git a/system/fcron/fcron.pre-install b/system/fcron/fcron.pre-install index b15879178..8f64a517b 100644 --- a/system/fcron/fcron.pre-install +++ b/system/fcron/fcron.pre-install @@ -1,6 +1,6 @@ #!/bin/sh -adduser -S -D -H -s /sbin/nologin -g fcron fcron 2>/dev/null -addgroup -S fcron 2>/dev/null +groupadd -r fcron 2>/dev/null +useradd -c fcron -s /sbin/nologin -g fcron -r fcron 2>/dev/null exit 0 -- cgit v1.2.3-60-g2f50