6329N/A#! /usr/bin/sh
6329N/A#
6329N/A# CDDL HEADER START
6329N/A#
6329N/A# The contents of this file are subject to the terms of the
6329N/A# Common Development and Distribution License (the "License").
6329N/A# You may not use this file except in compliance with the License.
6329N/A#
6329N/A# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
6329N/A# or http://www.opensolaris.org/os/licensing.
6329N/A# See the License for the specific language governing permissions
6329N/A# and limitations under the License.
6329N/A#
6329N/A# When distributing Covered Code, include this CDDL HEADER in each
6329N/A# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
6329N/A# If applicable, add the following below this CDDL HEADER, with the
6329N/A# fields enclosed by brackets "[]" replaced with your own identifying
6329N/A# information: Portions Copyright [yyyy] [name of copyright owner]
6329N/A#
6329N/A# CDDL HEADER END
6329N/A#
6329N/A
6329N/A#
6329N/A# Copyright (c) 2016, Oracle and/or its affiliates. All rights reserved.
6329N/A#
6329N/A# Start method script for the AccountsService daemon.
6329N/A#
6329N/A
6329N/A. /lib/svc/share/smf_include.sh
6329N/A
6329N/Adaemon_args=""
6329N/A
6329N/Adebug="$(/usr/bin/svcprop -p options/debug "${SMF_FMRI}")"
6329N/A[[ "${debug}" == "true" ]] && daemon_args+=" --debug"
6329N/A
6329N/A/usr/lib/accounts-daemon ${daemon_args} &
6329N/A
6329N/Aexit $SMF_EXIT_OK