1cd789508SIftekharul Islam<div id="power-operations"> 2cd789508SIftekharul Islam 3cd789508SIftekharul Islam <div class="row column"> 4e126be7aSMichael Davis <h1>Server power operations</h1> 5cd789508SIftekharul Islam </div> 6cd789508SIftekharul Islam 7cd789508SIftekharul Islam <div class="row column"> 8cd789508SIftekharul Islam <div class="power__current-status "> 9cd789508SIftekharul Islam <h2 class="inline h4">Current status</h2> 10*8819b7a7SMichael Davis <div class="power__status-log inline float-right">Last power operation at <span class="courier-bold">{{dataService.last_updated |date:'h:mm:ss on MMM dd yyyy'}}</span></div> 11cd789508SIftekharul Islam </div> 12cd789508SIftekharul Islam </div> 13cd789508SIftekharul Islam <div class="row column"> 14cd789508SIftekharul Islam <div id="power-indicator-bar" class="power__indicator-bar" ng-class="{'power__state-on': dataService.server_state == 'Running', 'power__state-off': dataService.server_state == 'Off', 'power__state-indet': dataService.server_state == 'Quiesced'}"> 15cd789508SIftekharul Islam <p class="inline">{{dataService.server_id}}</p> 167f89fad6SMichael Davis <h3 class="power__state inline no-margin h3"><span>{{dataService.server_state}}</span></h3> 17cd789508SIftekharul Islam </div> 18cd789508SIftekharul Islam </div> 19cd789508SIftekharul Islam <div class="row column"> 20cd789508SIftekharul Islam <div class="row column"> 2146f0a1f8SMichael Davis <h3 class="h4 subhead">Select a power operation</h3> 22cd789508SIftekharul Islam </div> 23cd789508SIftekharul Islam 24cd789508SIftekharul Islam <!-- Power on displays only when server is shutdown --> 25cd789508SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Running' || dataService.server_state == 'Quiesced'" ng-class="{disabled: dataService.server_unreachable || (confirm && !power_confirm) || dataService.loading, transitionAll: confirm && power_confirm}"> 2668f929d1SMichael Davis <button id="power__power-on" class="btn-secondary inline" ng-click="togglePower()" role="button" ng-disabled="dataService.server_unreachable"><img src="assets/images/icon-power.svg" alt="power on">Power on</button> 2746f0a1f8SMichael Davis <p class="inline">Attempts to power on the server</p> 28cd789508SIftekharul Islam 29cd789508SIftekharul Islam <!---<confirm title="power off" message="Power off the server" confirm="power_confirm" ng-show="power_confirm" callback="togglePower"></confirm>--> 30cd789508SIftekharul Islam </div> 31cd789508SIftekharul Islam 32cd789508SIftekharul Islam <!-- Power reboot/shutdown options : when server is off all of these are hidden. When one option is selected, the others are disabled. --> 33cd789508SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Off'" ng-class="{disabled: dataService.server_unreachable || (confirm && !warmboot_confirm) || dataService.loading, transitionAll: confirm && warmboot_confirm}"> 3446f0a1f8SMichael Davis <button id="power__warm-boot" class="btn-secondary inline" ng-click="warmRebootConfirm()" role="button" ng-disabled="dataService.server_unreachable"><i>↻</i> Warm reboot</button> 3546f0a1f8SMichael Davis <p class="inline">Attempts to perform an orderly shutdown before restarting the server</p> 3668f929d1SMichael Davis <confirm title="Warm Reboot" confirm="warmboot_confirm" ng-show="warmboot_confirm" callback="warmReboot"></confirm> 37cd789508SIftekharul Islam </div> 38cd789508SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Off'" ng-class="{disabled: dataService.server_unreachable || (confirm && !coldboot_confirm) || dataService.loading, transitionAll: confirm && coldboot_confirm}"> 3946f0a1f8SMichael Davis <button id="power__cold-boot" class="btn-secondary inline" ng-click="coldRebootConfirm()" role="button" ng-disabled="dataService.server_unreachable"><i>↻</i> Cold reboot</button> 4046f0a1f8SMichael Davis <p class="inline">Shuts down the server immediately, then restarts it</p> 4168f929d1SMichael Davis <confirm title="Cold Reboot" confirm="coldboot_confirm" ng-show="coldboot_confirm" cancel="coldbootCancel" callback="coldReboot"></confirm> 42cd789508SIftekharul Islam </div> 43cd789508SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Off'" ng-class="{disabled: dataService.server_unreachable || (confirm && !orderly_confirm) || dataService.loading, transitionAll: confirm && orderly_confirm}"> 4446f0a1f8SMichael Davis <button id="power__soft-shutdown" class="btn-secondary inline" ng-click="orderlyShutdownConfirm()" role="button" ng-disabled="dataService.server_unreachable"><img src="assets/images/icon-power.svg" />Orderly shutdown</button> 4546f0a1f8SMichael Davis <p class="inline">Attempts to stop all software on the server before removing power</p> 4668f929d1SMichael Davis <confirm title="Orderly shutdown" confirm="orderly_confirm" ng-show="orderly_confirm" cancel="orderlyShutdownCancel" callback="orderlyShutdown"></confirm> 47cd789508SIftekharul Islam </div> 48cd789508SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Off'" ng-class="{disabled: dataService.server_unreachable || (confirm && !immediately_confirm) || dataService.loading, transitionAll: confirm && immediately_confirm}"> 4946f0a1f8SMichael Davis <button id="power__hard-shutdown" class="btn-secondary inline" ng-click="immediateShutdownConfirm()" role="button" ng-disabled="dataService.server_unreachable"><img src="assets/images/icon-power.svg" />Immediate shutdown</button> 5046f0a1f8SMichael Davis <p class="inline">Removes power from the server without waiting for software to stop</p> 5168f929d1SMichael Davis <confirm title="Immediate shutdown" confirm="immediately_confirm" ng-show="immediately_confirm" cancel="immediatelyShutdownCancel" callback="immediateShutdown"></confirm> 52cd789508SIftekharul Islam </div> 53cd789508SIftekharul Islam </div> 54cd789508SIftekharul Islam</div>