2013-08-09 10:42:49 -04:00
|
|
|
/* See LICENSE file for copyright and license details. */
|
|
|
|
#include <sys/swap.h>
|
2014-02-08 12:54:04 -05:00
|
|
|
#include <mntent.h>
|
2013-08-09 10:42:49 -04:00
|
|
|
#include <errno.h>
|
|
|
|
#include <stdio.h>
|
2013-10-07 14:11:40 -04:00
|
|
|
#include <stdlib.h>
|
2013-08-09 10:42:49 -04:00
|
|
|
#include <string.h>
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
static void
|
|
|
|
usage(void)
|
|
|
|
{
|
2014-02-08 12:54:04 -05:00
|
|
|
eprintf("usage: %s [-a] device\n", argv0);
|
2013-08-09 10:42:49 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
main(int argc, char *argv[])
|
|
|
|
{
|
|
|
|
int i;
|
2013-10-07 14:11:40 -04:00
|
|
|
int ret = EXIT_SUCCESS;
|
2014-02-08 12:54:04 -05:00
|
|
|
int all = 0;
|
2013-08-09 10:42:49 -04:00
|
|
|
|
|
|
|
ARGBEGIN {
|
2014-02-08 12:54:04 -05:00
|
|
|
case 'a':
|
|
|
|
all = 1;
|
|
|
|
break;
|
2013-08-09 10:42:49 -04:00
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
} ARGEND;
|
|
|
|
|
2014-02-08 12:54:04 -05:00
|
|
|
if (!all && argc < 1)
|
2013-08-09 10:42:49 -04:00
|
|
|
usage();
|
|
|
|
|
2014-02-08 12:54:04 -05:00
|
|
|
if (all) {
|
|
|
|
struct mntent *me = NULL;
|
|
|
|
FILE *fp;
|
|
|
|
|
|
|
|
fp = setmntent("/etc/fstab", "r");
|
2014-02-15 13:26:01 -05:00
|
|
|
if (!fp)
|
|
|
|
eprintf("setmntent %s:", "/etc/fstab");
|
2014-02-08 12:54:04 -05:00
|
|
|
while ((me = getmntent(fp)) != NULL) {
|
|
|
|
if (strcmp(me->mnt_type, MNTTYPE_SWAP) == 0) {
|
|
|
|
if (swapoff(me->mnt_fsname) < 0) {
|
|
|
|
fprintf(stderr, "swapoff %s: %s\n",
|
2014-02-15 13:18:17 -05:00
|
|
|
me->mnt_fsname, strerror(errno));
|
2014-02-08 12:54:04 -05:00
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
endmntent(fp);
|
|
|
|
} else {
|
|
|
|
for (i = 0; i < argc; i++) {
|
|
|
|
if (swapoff(argv[i]) < 0) {
|
|
|
|
fprintf(stderr, "swapoff %s: %s\n",
|
2014-02-15 13:18:17 -05:00
|
|
|
argv[i], strerror(errno));
|
2014-02-08 12:54:04 -05:00
|
|
|
ret = EXIT_FAILURE;
|
|
|
|
}
|
2013-08-09 10:42:49 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|