From 2f8984613e17f9e5971ec338240b0bb6d2dd1cc6 Mon Sep 17 00:00:00 2001 From: Laurent Bercot Date: Sat, 11 Feb 2023 08:13:14 +0000 Subject: Code refactor; only s6-ps has remaining globals now Signed-off-by: Laurent Bercot --- src/minutils/s6-swapon.c | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 src/minutils/s6-swapon.c (limited to 'src/minutils/s6-swapon.c') diff --git a/src/minutils/s6-swapon.c b/src/minutils/s6-swapon.c deleted file mode 100644 index 41aabef..0000000 --- a/src/minutils/s6-swapon.c +++ /dev/null @@ -1,37 +0,0 @@ -/* ISC license. */ - -#include -#include -#include -#include -#include -#include - -#define USAGE "s6-swapon device s6-swapon -a" - -static int swaponall () -{ - struct mntent *d ; - int e = 0 ; - FILE *yuck = setmntent("/etc/fstab", "r") ; - if (!yuck) strerr_diefu1sys(111, "setmntent /etc/fstab") ; - while ((d = getmntent(yuck))) - if (!strcmp(d->mnt_type, "swap") && (swapon(d->mnt_fsname, 0) == -1)) - { - e++ ; - strerr_warnwu2sys("swapon ", d->mnt_fsname) ; - } - endmntent(yuck) ; - return e ; -} - -int main (int argc, char const *const *argv) -{ - PROG = "s6-swapon" ; - if (argc < 2) strerr_dieusage(100, USAGE) ; - if ((argv[1][0] == '-') && (argv[1][1] == 'a') && !argv[1][2]) - return swaponall() ; - if (swapon(argv[1], 0) == -1) - strerr_diefu2sys(111, "swapon ", argv[1]) ; - return 0 ; -} -- cgit v1.3.1