1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#! /bin/pfsh
# Copyright (C) 2009 Sun Microsystems, Inc.
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
prefix=@prefix@
exec_prefix=@exec_prefix@
grep solaris.smf.value.drizzle /etc/security/auth_attr > /dev/null
if [ $? -ne 0 ]
then
ed /etc/security/auth_attr > /dev/null <<EOF
a
solaris.smf.value.drizzle:::Change Drizzle value properties::
solaris.smf.manage.drizzle:::Manage Drizzle service states::
.
w
q
EOF
if [ $? -ne 0 ]
then
echo "Failed to add authorization definitions"
exit 1
fi
fi
grep solaris.smf.manage.drizzle /etc/security/prof_attr > /dev/null
if [ $? -ne 0 ]
then
ed /etc/security/prof_attr > /dev/null <<EOF
a
Drizzle Administration::::auths=solaris.smf.manage.drizzle,solaris.smf.value.drizzle
.
w
q
EOF
if [ $? -ne 0 ]
then
echo "Failed to add profile definitions"
exit 1
fi
fi
getent group drizzled > /dev/null
if [ $? -ne 0 ]
then
groupadd drizzled
if [ $? -ne 0 ]
then
echo "Failed to create group drizzled"
exit 1
fi
fi
getent passwd drizzled > /dev/null
if [ $? -ne 0 ]
then
roleadd -c "Drizzle daemon" -d @localstatedir@ -g drizzled \
-A solaris.smf.value.drizzle,solaris.smf.manage.drizzle drizzled
if [ $? -ne 0 ]
then
echo "Failed to create role drizzled"
exit 1
fi
mkdir -p @localstatedir@/data
mkdir -p @localstatedir@/crash
chown -R drizzled:drizzled @localstatedir@
fi
/usr/sbin/install -f /lib/svc/method drizzle
if [ $? -ne 0 ]
then
echo "Failed to install smf startup script"
exit 1
fi
/usr/sbin/install -f /var/svc/manifest/application -m 0444 drizzle.xml
if [ $? -ne 0 ]
then
echo "Failed to install smf definition"
exit 1
fi
svccfg import /var/svc/manifest/application/drizzle.xml
if [ $? -ne 0 ]
then
echo "Failed to import smf definition"
exit 1
fi
|