diff options
author | Max Rees <maxcrees@me.com> | 2019-07-21 16:49:33 -0400 |
---|---|---|
committer | Max Rees <maxcrees@me.com> | 2019-07-21 16:49:33 -0400 |
commit | 94731625b42d0dfc0fd5111482938584b40c7478 (patch) | |
tree | a3bd7f85b1674ffcdb4e74048696012bd3249417 /system/fcron | |
parent | 1c094f0b6391ac321c21351ea3def051b81b1d79 (diff) | |
download | packages-94731625b42d0dfc0fd5111482938584b40c7478.tar.gz packages-94731625b42d0dfc0fd5111482938584b40c7478.tar.bz2 packages-94731625b42d0dfc0fd5111482938584b40c7478.tar.xz packages-94731625b42d0dfc0fd5111482938584b40c7478.zip |
system/*: use useradd, groupadd instead of adduser, addgroup
Diffstat (limited to 'system/fcron')
-rw-r--r-- | system/fcron/APKBUILD | 2 | ||||
-rw-r--r-- | system/fcron/fcron.pre-install | 4 |
2 files changed, 3 insertions, 3 deletions
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 <awilfox@adelielinux.org> 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 |