bsdinstall: Drop vestigial bsdinstall-esps cleanup

This is not needed after 0b7472b3d8.

MFC after:	3 days
Sponsored by:	iXsystems, Inc.
Reviewed by:	imp
Differential Revision:	https://reviews.freebsd.org/D29325
This commit is contained in:
Ryan Moeller 2021-03-26 14:12:18 -04:00
parent badcfbacf3
commit b07b7aec65
2 changed files with 1 additions and 15 deletions

View File

@ -45,7 +45,6 @@
#include "partedit.h"
struct pmetadata_head part_metadata;
int tmpdfd;
static int sade_mode = 0;
static int apply_changes(struct gmesh *mesh);
@ -69,8 +68,6 @@ sigint_handler(int sig)
end_dialog();
close(tmpdfd);
exit(1);
}
@ -78,7 +75,7 @@ int
main(int argc, const char **argv)
{
struct partition_metadata *md;
const char *progname, *prompt, *tmpdir;
const char *progname, *prompt;
struct partedit_item *items = NULL;
struct gmesh mesh;
int i, op, nitems, nscroll;
@ -90,14 +87,6 @@ main(int argc, const char **argv)
TAILQ_INIT(&part_metadata);
tmpdir = getenv("TMPDIR");
if (tmpdir == NULL)
tmpdir = "/tmp";
tmpdfd = open(tmpdir, O_DIRECTORY);
if (tmpdfd < 0)
err(EX_OSERR, "%s", tmpdir);
unlinkat(tmpdfd, "bsdinstall-esps", 0);
init_fstab_metadata();
init_dialog(stdin, stdout);
@ -233,7 +222,6 @@ main(int argc, const char **argv)
geom_deletetree(&mesh);
free(items);
end_dialog();
close(tmpdfd);
return (error);
}

View File

@ -39,8 +39,6 @@ struct gprovider;
struct gmesh;
struct ggeom;
extern int tmpdfd;
TAILQ_HEAD(pmetadata_head, partition_metadata);
extern struct pmetadata_head part_metadata;