__process: support present/absent
Signed-off-by: Nico Schottelius <nico@brief.schottelius.org>
This commit is contained in:
		
					parent
					
						
							
								e72c39b786
							
						
					
				
			
			
				commit
				
					
						578fd664e4
					
				
			
		
					 1 changed files with 5 additions and 7 deletions
				
			
		| 
						 | 
					@ -18,8 +18,6 @@
 | 
				
			||||||
# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
#
 | 
					#
 | 
				
			||||||
# __file is a very basic type, which will probably be reused quite often
 | 
					 | 
				
			||||||
#
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
if [ -f "$__object/parameter/name" ]; then
 | 
					if [ -f "$__object/parameter/name" ]; then
 | 
				
			||||||
   name="$(cat "$__object/parameter/name")"
 | 
					   name="$(cat "$__object/parameter/name")"
 | 
				
			||||||
| 
						 | 
					@ -28,10 +26,10 @@ else
 | 
				
			||||||
fi
 | 
					fi
 | 
				
			||||||
 | 
					
 | 
				
			||||||
runs="$(cat "$__object/explorer/runs")"
 | 
					runs="$(cat "$__object/explorer/runs")"
 | 
				
			||||||
state="$(cat "$__object/parameter/state")"
 | 
					state_should="$(cat "$__object/parameter/state")"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
case "$state" in
 | 
					case "$state_should" in
 | 
				
			||||||
   running)
 | 
					   running|present)
 | 
				
			||||||
      # Does not run, start it!
 | 
					      # Does not run, start it!
 | 
				
			||||||
      if [ -z "$runs" ]; then
 | 
					      if [ -z "$runs" ]; then
 | 
				
			||||||
         if [ -f "$__object/parameter/start" ]; then
 | 
					         if [ -f "$__object/parameter/start" ]; then
 | 
				
			||||||
| 
						 | 
					@ -41,7 +39,7 @@ case "$state" in
 | 
				
			||||||
         fi
 | 
					         fi
 | 
				
			||||||
      fi
 | 
					      fi
 | 
				
			||||||
   ;;
 | 
					   ;;
 | 
				
			||||||
   stopped)
 | 
					   stopped|absent)
 | 
				
			||||||
      # Runs, kill it!
 | 
					      # Runs, kill it!
 | 
				
			||||||
      if [ "$runs" ]; then
 | 
					      if [ "$runs" ]; then
 | 
				
			||||||
         if [ -f "$__object/parameter/stop" ]; then
 | 
					         if [ -f "$__object/parameter/stop" ]; then
 | 
				
			||||||
| 
						 | 
					@ -52,7 +50,7 @@ case "$state" in
 | 
				
			||||||
      fi
 | 
					      fi
 | 
				
			||||||
   ;;
 | 
					   ;;
 | 
				
			||||||
   *)
 | 
					   *)
 | 
				
			||||||
      echo "Unknown state: $state" >&2
 | 
					      echo "Unknown state: $state_should" >&2
 | 
				
			||||||
      exit 1
 | 
					      exit 1
 | 
				
			||||||
   ;;
 | 
					   ;;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue