Kiln » KilnSupportScripts Powershell Scripts to help monitor a Kiln environment. Contact Fog Creek support before using.
Clone URL:  
Pushed to one repository · View In Graph Contained in tip

Check-KilnBackend now returns True/False in addition to doing stuff.

Changeset 36a36e047661

Parent 5bcd7ecff7db

by Profile picture of User 476Ben McCormack <benm@fogcreek.com>

Changes to one file · Browse files at 36a36e047661 Showing diff from parent 5bcd7ecff7db Diff from another changeset...

Change 1 of 1 Show Entire File checkBackend.ps1 Stacked
 
40
41
42
 
43
44
45
 
46
47
48
 
40
41
42
43
44
45
46
47
48
49
50
@@ -40,9 +40,11 @@
  #Restart the Kiln storage Service because something bad happened   write "$(Get-Date -format o) Something is wrong. Restarting Kiln Storage Service" | out-file -append $logFile   Restart-Service "KilnStorageService" + return False   }   else {   write "$(Get-Date -format o) Kiln backend is OK" | out-file -append $logFile + return True   }  }