~ubuntu-branches/ubuntu/saucy/opendrim-lmp-simpleidentitymanagement/saucy

« back to all changes in this revision

Viewing changes to registration/OpenDRIM_AccountAssignedIdentity.sh

  • Committer: Bazaar Package Importer
  • Author(s): Guillaume BOTTEX
  • Date: 2010-06-21 15:54:00 UTC
  • Revision ID: james.westby@ubuntu.com-20100621155400-myesv5hd2f3s8x9y
Tags: upstream-1.0.0
ImportĀ upstreamĀ versionĀ 1.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/bash
 
2
 
 
3
#################################################################################
 
4
# Linux Management Providers (LMP), Simple Identity Management provider package
 
5
# Copyright (C) 2007 Frederic Desmons, ETRI <desmons@etri.re.kr, desmons_frederic@yahoo.fr>
 
6
 
7
# This program is being developed under the "OpenDRIM" project.
 
8
# The "OpenDRIM" project web page: http://opendrim.sourceforge.net
 
9
# The "OpenDRIM" project mailing list: opendrim@googlegroups.com
 
10
 
11
# This program is free software; you can redistribute it and/or
 
12
# modify it under the terms of the GNU General Public License
 
13
# as published by the Free Software Foundation; version 2
 
14
# of the License.
 
15
 
16
# This program is distributed in the hope that it will be useful,
 
17
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
18
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
19
# GNU General Public License for more details.
 
20
 
21
# You should have received a copy of the GNU General Public License
 
22
# along with this program; if not, write to the Free Software
 
23
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 
24
#################################################################################
 
25
 
 
26
#################################################################################
 
27
# To contributors, please leave your contact information in this section
 
28
# AND comment your changes in the source code.
 
29
 
30
# Modified by 2009 Khahramon NURIDDINOV, TUIT <qahramon0786@gmail.com>
 
31
# Modified by 2009 Guillaume BOTTEX, ETRI <guillaumebottex@etri.re.kr>
 
32
#################################################################################
 
33
 
 
34
 
 
35
if test "$3" = pegasus
 
36
then
 
37
        
 
38
        cimmof -aE -n $1 $6/mof/OpenDRIM_AccountAssignedIdentity.mof
 
39
 
 
40
        OUTFILE=./TEMP_REGISTRATION
 
41
        
 
42
cat >> $OUTFILE << EOFC
 
43
instance of PG_ProviderModule {
 
44
Caption = "OpenDRIM_AccountAssignedIdentity provider module";
 
45
Name = "Simple_Identity_Management_OpenDRIM_AccountAssignedIdentityModule";
 
46
Location = "cmpiSimple_Identity_Management_OpenDRIM_AccountAssignedIdentityProvider";
 
47
Vendor = "$2";
 
48
Version = "$5";
 
49
InterfaceType = "CMPI";
 
50
InterfaceVersion = "2.0.0";
 
51
};
 
52
 
 
53
instance of PG_Provider {
 
54
Caption = "OpenDRIM_AccountAssignedIdentity provider";
 
55
Name = "Simple_Identity_Management_OpenDRIM_AccountAssignedIdentityProvider";
 
56
ProviderModuleName = "Simple_Identity_Management_OpenDRIM_AccountAssignedIdentityModule";
 
57
};
 
58
 
 
59
instance of PG_ProviderCapabilities {
 
60
Caption = "OpenDRIM_AccountAssignedIdentity provider capabilities";
 
61
ProviderModuleName = "Simple_Identity_Management_OpenDRIM_AccountAssignedIdentityModule";
 
62
ProviderName = "Simple_Identity_Management_OpenDRIM_AccountAssignedIdentityProvider";
 
63
ClassName = "OpenDRIM_AccountAssignedIdentity";
 
64
ProviderType = {2, 3};
 
65
Namespaces = {"$1"};
 
66
SupportedProperties = {"IdentityInfo", "ManagedElement"};
 
67
CapabilityID = "Simple_Identity_Management_OpenDRIM_AccountAssignedIdentity";
 
68
};
 
69
 
 
70
EOFC
 
71
        
 
72
        cimmof -n root/PG_InterOp $OUTFILE
 
73
        
 
74
        rm -f $OUTFILE
 
75
        
 
76
fi
 
77
 
 
78
if test "$3" = sfcb
 
79
then
 
80
        
 
81
        OUTFILE=./OpenDRIM_AccountAssignedIdentity.reg
 
82
        
 
83
cat >> $OUTFILE <<EOFC
 
84
[OpenDRIM_AccountAssignedIdentity]   
 
85
   provider: Simple_Identity_Management_OpenDRIM_AccountAssignedIdentityProvider
 
86
   location: cmpiSimple_Identity_Management_OpenDRIM_AccountAssignedIdentityProvider
 
87
   type: instance association
 
88
   namespace: $1
 
89
#
 
90
EOFC
 
91
        
 
92
        sfcbstage -r $OUTFILE -n $1 $6/mof/OpenDRIM_AccountAssignedIdentity.mof
 
93
        
 
94
        rm -f $OUTFILE
 
95
        
 
96
        sfcbrepos -f
 
97
        
 
98
fi
 
99
 
 
100
if test "$3" = openwbem
 
101
then
 
102
        
 
103
        OUTFILE=./OpenDRIM_AccountAssignedIdentity-reg.mof
 
104
        rm -f $OUTFILE
 
105
        sed "s/Provider *( *\"cmpi:/Provider(\"cmpi::/g" < $6/mof/OpenDRIM_AccountAssignedIdentity.mof >> $OUTFILE
 
106
        owmofc -u http://localhost/$1 $OUTFILE
 
107
        
 
108
        rm -f $OUTFILE
 
109
        
 
110
fi