diff options
author | gordon <gordon@FreeBSD.org> | 2003-06-29 18:06:05 +0000 |
---|---|---|
committer | gordon <gordon@FreeBSD.org> | 2003-06-29 18:06:05 +0000 |
commit | 5d5a81b891bbce7b389083b2e91ebdfa4f0b4b7e (patch) | |
tree | d09c1b26fc473875437b5fc1a8bf4b2bba856000 /sbin/mdmfs | |
parent | a2e554b7d49e79a63c2f3bd6cbcd2b6a6ac2f18e (diff) | |
download | FreeBSD-src-5d5a81b891bbce7b389083b2e91ebdfa4f0b4b7e.zip FreeBSD-src-5d5a81b891bbce7b389083b2e91ebdfa4f0b4b7e.tar.gz |
Move path definitions to include/paths.h. This makes it easier to override
these definitions in the /rescue case.
Submitted by: Tim Kientzle <kientzle@acm.org>
Diffstat (limited to 'sbin/mdmfs')
-rw-r--r-- | sbin/mdmfs/mdmfs.c | 10 | ||||
-rw-r--r-- | sbin/mdmfs/pathnames.h | 9 |
2 files changed, 5 insertions, 14 deletions
diff --git a/sbin/mdmfs/mdmfs.c b/sbin/mdmfs/mdmfs.c index 0a6b985..8054407 100644 --- a/sbin/mdmfs/mdmfs.c +++ b/sbin/mdmfs/mdmfs.c @@ -340,7 +340,7 @@ do_mdconfig_attach(const char *args, const enum md_types mdtype) default: abort(); } - rv = run(NULL, "%s -a %s%s -u %s%d", PATH_MDCONFIG, ta, args, + rv = run(NULL, "%s -a %s%s -u %s%d", _PATH_MDCONFIG, ta, args, mdname, unit); if (rv) errx(1, "mdconfig (attach) exited with error code %d", rv); @@ -373,7 +373,7 @@ do_mdconfig_attach_au(const char *args, const enum md_types mdtype) default: abort(); } - rv = run(&fd, "%s -a %s%s", PATH_MDCONFIG, ta, args); + rv = run(&fd, "%s -a %s%s", _PATH_MDCONFIG, ta, args); if (rv) errx(1, "mdconfig (attach) exited with error code %d", rv); @@ -411,7 +411,7 @@ do_mdconfig_detach(void) { int rv; - rv = run(NULL, "%s -d -u %s%d", PATH_MDCONFIG, mdname, unit); + rv = run(NULL, "%s -d -u %s%d", _PATH_MDCONFIG, mdname, unit); if (rv && debug) /* This is allowed to fail. */ warnx("mdconfig (detach) exited with error code %d (ignored)", rv); @@ -425,7 +425,7 @@ do_mount(const char *args, const char *mtpoint) { int rv; - rv = run(NULL, "%s%s /dev/%s%d %s", PATH_MOUNT, args, + rv = run(NULL, "%s%s /dev/%s%d %s", _PATH_MOUNT, args, mdname, unit, mtpoint); if (rv) errx(1, "mount exited with error code %d", rv); @@ -475,7 +475,7 @@ do_newfs(const char *args) { int rv; - rv = run(NULL, "%s%s /dev/%s%d", PATH_NEWFS, args, mdname, unit); + rv = run(NULL, "%s%s /dev/%s%d", _PATH_NEWFS, args, mdname, unit); if (rv) errx(1, "newfs exited with error code %d", rv); } diff --git a/sbin/mdmfs/pathnames.h b/sbin/mdmfs/pathnames.h deleted file mode 100644 index 2dfccb1..0000000 --- a/sbin/mdmfs/pathnames.h +++ /dev/null @@ -1,9 +0,0 @@ -/* $FreeBSD$ */ -#ifndef MDMFS_PATHNAMES_H -#define MDMFS_PATHNAMES_H - -#define PATH_MDCONFIG "/sbin/mdconfig" -#define PATH_NEWFS "/sbin/newfs" -#define PATH_MOUNT "/sbin/mount" - -#endif /* !MDMFS_PATHNAMES_H */ |