ubase/umount.c

43 lines
604 B
C
Raw Normal View History

/* See LICENSE file for copyright and license details. */
#include <sys/mount.h>
2013-08-07 08:52:10 +00:00
#include <stdio.h>
2013-10-07 18:11:40 +00:00
#include <stdlib.h>
2013-08-07 08:52:10 +00:00
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [-lfn] target\n", argv0);
2013-08-07 08:52:10 +00:00
}
int
main(int argc, char *argv[])
{
2013-08-07 08:52:10 +00:00
int i;
int flags = 0;
2013-10-07 18:11:40 +00:00
int ret = EXIT_SUCCESS;
2013-08-07 08:52:10 +00:00
ARGBEGIN {
case 'f':
flags |= MNT_FORCE;
break;
case 'l':
flags |= MNT_DETACH;
2013-08-07 08:52:10 +00:00
break;
case 'n':
break;
2013-08-07 08:52:10 +00:00
default:
usage();
} ARGEND;
2013-08-10 10:38:30 +00:00
2013-08-07 08:52:10 +00:00
if (argc < 1)
usage();
2013-08-10 10:38:30 +00:00
2013-08-07 08:52:10 +00:00
for (i = 0; i < argc; i++) {
if (umount2(argv[i], flags) < 0)
perror("umount2:");
2013-10-07 18:11:40 +00:00
ret = EXIT_FAILURE;
2013-08-07 08:52:10 +00:00
}
return ret;
}