File: smf_install.sh.in

package info (click to toggle)
gearmand 0.13-1
  • links: PTS, VCS
  • area: main
  • in suites: squeeze
  • size: 3,876 kB
  • ctags: 1,656
  • sloc: ansic: 17,412; sh: 10,894; makefile: 76; cpp: 9
file content (88 lines) | stat: -rwxr-xr-x 1,668 bytes parent folder | download | duplicates (8)
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
#! /bin/pfsh

prefix=@prefix@
exec_prefix=@exec_prefix@

grep solaris.smf.value.gearman /etc/security/auth_attr > /dev/null
if [ $? -ne 0 ]
then
  ed /etc/security/auth_attr > /dev/null <<EOF
a
solaris.smf.value.gearman:::Change Gearman value properties::
solaris.smf.manage.gearman:::Manage Gearman service states::
.
w
q
EOF
  if [ $? -ne 0 ]
  then
    echo "Failed to add authorization definitions"
    exit 1
  fi
fi

grep solaris.smf.manage.gearman /etc/security/prof_attr > /dev/null
if [ $? -ne 0 ]
then
  ed /etc/security/prof_attr > /dev/null <<EOF
a
Gearman Administration::::auths=solaris.smf.manage.gearman,solaris.smf.value.gearman
.
w
q
EOF

  if [ $? -ne 0 ]
  then
    echo "Failed to add profile definitions"
    exit 1
  fi
fi

getent group gearmand > /dev/null
if [ $? -ne 0 ]
then
  groupadd gearmand
  if [ $? -ne 0 ]
  then
    echo "Failed to create group gearmand"
    exit 1
  fi
fi

getent passwd gearmand > /dev/null
if [ $? -ne 0 ]
then
  roleadd -c "Gearman daemon" -d @localstatedir@ -g gearmand \
          -A solaris.smf.value.gearman,solaris.smf.manage.gearman gearmand
  if [ $? -ne 0 ]
  then
    echo "Failed to create role gearmand"
    exit 1
  fi

  mkdir -p @localstatedir@ 
  chown gearmand:gearmand @localstatedir@
fi

/usr/sbin/install -f /lib/svc/method gearmand
if [ $? -ne 0 ]
then
  echo "Failed to install smf startup script"
  exit 1
fi

/usr/sbin/install -f /var/svc/manifest/application -m 0444 gearmand.xml
if [ $? -ne 0 ]
then
  echo "Failed to install smf definition"
  exit 1
fi

svccfg import /var/svc/manifest/application/gearmand.xml
if [ $? -ne 0 ]
then
  echo "Failed to import smf definition"
  exit 1
fi