ubase/swapon.c

68 lines
1.1 KiB
C
Raw Normal View History

2013-08-09 10:48:29 -04:00
/* See LICENSE file for copyright and license details. */
#include <sys/swap.h>
2014-06-30 14:03:41 -04:00
#include <mntent.h>
2013-08-09 10:48:29 -04:00
#include <stdio.h>
2013-10-07 14:11:40 -04:00
#include <stdlib.h>
2013-08-09 10:48:29 -04:00
#include <string.h>
2014-06-30 14:03:41 -04:00
2013-08-09 10:48:29 -04:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [-dp] -a | device\n", argv0);
2013-08-09 10:48:29 -04:00
}
int
main(int argc, char *argv[])
{
int i;
2014-10-02 18:45:25 -04:00
int ret = 0;
2013-08-09 10:48:29 -04:00
int flags = 0;
int all = 0;
struct mntent *me;
FILE *fp;
2013-08-09 10:48:29 -04:00
ARGBEGIN {
case 'a':
all = 1;
break;
2013-08-09 10:48:29 -04:00
case 'd':
flags |= SWAP_FLAG_DISCARD;
break;
2014-02-08 22:24:17 -05:00
case 'p':
flags |= SWAP_FLAG_PREFER;
break;
2013-08-09 10:48:29 -04:00
default:
usage();
} ARGEND;
if ((!all && argc < 1) || (all && argc > 0))
2013-08-09 10:48:29 -04:00
usage();
if (all) {
fp = setmntent("/etc/fstab", "r");
2014-02-15 13:26:01 -05:00
if (!fp)
eprintf("setmntent %s:", "/etc/fstab");
while ((me = getmntent(fp)) != NULL) {
if (strcmp(me->mnt_type, MNTTYPE_SWAP) == 0
2014-02-15 13:18:17 -05:00
&& (hasmntopt(me, MNTOPT_NOAUTO) == NULL)) {
if (swapon(me->mnt_fsname, flags) < 0) {
weprintf("swapon %s:", me->mnt_fsname);
2014-10-02 18:45:25 -04:00
ret = 1;
}
}
}
endmntent(fp);
} else {
for (i = 0; i < argc; i++) {
if (swapon(argv[i], flags) < 0) {
weprintf("swapon %s:", argv[i]);
2014-10-02 18:45:25 -04:00
ret = 1;
}
2013-08-09 10:48:29 -04:00
}
}
return ret;
}