1*62b36bd8SMatt Spinler /**
2*62b36bd8SMatt Spinler  * Copyright © 2017 IBM Corporation
3*62b36bd8SMatt Spinler  *
4*62b36bd8SMatt Spinler  * Licensed under the Apache License, Version 2.0 (the "License");
5*62b36bd8SMatt Spinler  * you may not use this file except in compliance with the License.
6*62b36bd8SMatt Spinler  * You may obtain a copy of the License at
7*62b36bd8SMatt Spinler  *
8*62b36bd8SMatt Spinler  *     http://www.apache.org/licenses/LICENSE-2.0
9*62b36bd8SMatt Spinler  *
10*62b36bd8SMatt Spinler  * Unless required by applicable law or agreed to in writing, software
11*62b36bd8SMatt Spinler  * distributed under the License is distributed on an "AS IS" BASIS,
12*62b36bd8SMatt Spinler  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13*62b36bd8SMatt Spinler  * See the License for the specific language governing permissions and
14*62b36bd8SMatt Spinler  * limitations under the License.
15*62b36bd8SMatt Spinler  */
16*62b36bd8SMatt Spinler 
17*62b36bd8SMatt Spinler /**
18*62b36bd8SMatt Spinler  * This application will check the ActiveState property
19*62b36bd8SMatt Spinler  * on the source unit passed in.  If that state is 'failed',
20*62b36bd8SMatt Spinler  * then it will either stop or start the target unit, depending
21*62b36bd8SMatt Spinler  * on the command line arguments.
22*62b36bd8SMatt Spinler  */
23*62b36bd8SMatt Spinler 
24*62b36bd8SMatt Spinler 
25*62b36bd8SMatt Spinler int main(int argc, char** argv)
26*62b36bd8SMatt Spinler {
27*62b36bd8SMatt Spinler 
28*62b36bd8SMatt Spinler 
29*62b36bd8SMatt Spinler     return 0;
30*62b36bd8SMatt Spinler }
31