summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr/src/cmd/zoneadmd/vplat.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/usr/src/cmd/zoneadmd/vplat.c b/usr/src/cmd/zoneadmd/vplat.c
index 28194da33e..4693435f9f 100644
--- a/usr/src/cmd/zoneadmd/vplat.c
+++ b/usr/src/cmd/zoneadmd/vplat.c
@@ -437,12 +437,10 @@ make_one_dir(zlog_t *zlogp, const char *prefix, const char *subdir, mode_t mode,
* and we don't need to second guess him.
*/
if (!S_ISDIR(st.st_mode)) {
- if (is_system_labeled() &&
- S_ISREG(st.st_mode)) {
+ if (S_ISREG(st.st_mode)) {
/*
- * The need to mount readonly copies of
- * global zone /etc/ files is unique to
- * Trusted Extensions.
+ * Allow readonly mounts of /etc/ files; this
+ * is needed most by Trusted Extensions.
*/
if (strncmp(subdir, "/etc/",
strlen("/etc/")) != 0) {