/*
* CDDL HEADER START
*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License (the "License").
* You may not use this file except in compliance with the License.
*
* You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
* See the License for the specific language governing permissions
* and limitations under the License.
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file at usr/src/OPENSOLARIS.LICENSE.
* If applicable, add the following below this CDDL HEADER, with the
* fields enclosed by brackets "[]" replaced with your own identifying
* information: Portions Copyright [yyyy] [name of copyright owner]
*
* CDDL HEADER END
*/
/*
*/
#include <errno.h>
#include <fcntl.h>
#include <libintl.h>
#include <libscf.h>
#include <libuutil.h>
#include <locale.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "manifest_find.h"
#include "manifest_hash.h"
/*
* mfstscan - service manifest change detection utility
*
* mfstscan walks the given filesystem hierarchies, and reports those manifests
* with changed or absent hash entries. Manifests are expected to end with a
* .xml suffix--other files will be ignored.
*/
static void
usage()
{
uu_getpname());
}
int
{
int i;
int paths_walked = 0;
int status;
int tflag = 0;
(void) uu_setpname(argv[0]);
switch (i) {
case 't':
tflag = 1;
paths_walked = 1;
break;
case '?':
default:
usage();
/*NOTREACHED*/
}
}
usage();
scf_strerror(scf_error()));
if (tflag) {
B_FALSE);
else
"for %s"), argv[i]);
continue;
}
continue;
}
if (status < 0) {
} else {
paths_walked++;
entry++) {
(void) printf("%s\n",
}
}
}
}
if (!paths_walked)
(void) scf_handle_unbind(hndl);
(void) scf_handle_destroy(hndl);
}
return (0);
}