/* See LICENSE file for copyright and license details. */ #include #include #include #include #include #include "util.h" static void usage(void) { eprintf("usage: %s [-a] device\n", argv0); } int main(int argc, char *argv[]) { int i; int ret = 0; int all = 0; ARGBEGIN { case 'a': all = 1; break; default: usage(); } ARGEND; if (!all && argc < 1) usage(); if (all) { struct mntent *me = NULL; FILE *fp; fp = setmntent("/etc/fstab", "r"); if (!fp) eprintf("setmntent %s:", "/etc/fstab"); while ((me = getmntent(fp)) != NULL) { if (strcmp(me->mnt_type, MNTTYPE_SWAP) == 0) { if (swapoff(me->mnt_fsname) < 0) { weprintf("swapoff %s:", me->mnt_fsname); ret = 1; } } } endmntent(fp); } else { for (i = 0; i < argc; i++) { if (swapoff(argv[i]) < 0) { weprintf("swapoff %s:", argv[i]); ret = 1; } } } return ret; }