ubase/umount.c
sin 9fbe1e6e66 Implement -l support for umount
This operation is not supported on OpenBSD so just
set errno to ENOTSUP.
2013-08-07 10:33:19 +01:00

36 lines
494 B
C

#include <stdio.h>
#include "ubase.h"
#include "util.h"
static void
usage(void)
{
eprintf("usage: %s [-lf] target\n", argv0);
}
int
main(int argc, char *argv[]) {
int i;
int flags = 0;
int ret = 0;
ARGBEGIN {
case 'f':
flags |= UBASE_MNT_FORCE;
break;
case 'l':
flags |= UBASE_MNT_DETACH;
break;
default:
usage();
} ARGEND;
if (argc < 1)
usage();
for (i = 0; i < argc; i++) {
if (do_umount(argv[i], flags) < 0)
eprintf("do_umount:");
ret = 1;
}
return ret;
}