1f875b4ebSrica# 2f875b4ebSrica# CDDL HEADER START 3f875b4ebSrica# 4f875b4ebSrica# The contents of this file are subject to the terms of the 5f875b4ebSrica# Common Development and Distribution License (the "License"). 6f875b4ebSrica# You may not use this file except in compliance with the License. 7f875b4ebSrica# 8f875b4ebSrica# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9f875b4ebSrica# or http://www.opensolaris.org/os/licensing. 10f875b4ebSrica# See the License for the specific language governing permissions 11f875b4ebSrica# and limitations under the License. 12f875b4ebSrica# 13f875b4ebSrica# When distributing Covered Code, include this CDDL HEADER in each 14f875b4ebSrica# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15f875b4ebSrica# If applicable, add the following below this CDDL HEADER, with the 16f875b4ebSrica# fields enclosed by brackets "[]" replaced with your own identifying 17f875b4ebSrica# information: Portions Copyright [yyyy] [name of copyright owner] 18f875b4ebSrica# 19f875b4ebSrica# CDDL HEADER END 20f875b4ebSrica# 21f875b4ebSrica# 22*88447a05SGarrett D'Amore# Copyright 2009 Sun Microsystems, Inc. All rights reserved. 23f875b4ebSrica# Use is subject to license terms. 24f875b4ebSrica# 25f875b4ebSrica# Default device_allocation attributes for device types. 26f875b4ebSrica# Device types supported - 27f875b4ebSrica# audio, fd, sr, st, rmdisk 28f875b4ebSrica# 29f875b4ebSrica# Syntax - 30f875b4ebSrica# device-type:\ 31f875b4ebSrica# minlabel=<ascii string for minimum label>;\ 32f875b4ebSrica# maxlabel=<ascii string for maximum label>;\ 33f875b4ebSrica# auths=<comma separated list of device authorizations>;\ 34f875b4ebSrica# cleanscript=<full path to clean script for this type> 35f875b4ebSrica# 36f875b4ebSrica# Multi-word strings above should be in double quotes. 37f875b4ebSrica# e.g.: minlabel="TS A B";maxlabel="TS AB";auths=solaris.device.allocate;\ 38f875b4ebSrica# cleanscript=/bin/true 39f875b4ebSrica# 40*88447a05SGarrett D'Amoreaudio:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/audio_clean 41f875b4ebSricafd:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/disk_clean 42f875b4ebSricasr:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/disk_clean 43f875b4ebSricast:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/tape_clean 44f875b4ebSricarmdisk:minlabel=admin_low;maxlabel=admin_high;auths=solaris.device.allocate;cleanscript=/etc/security/lib/disk_clean 45