1cd789508SIftekharul Islam<div id="power-operations"> 2cd789508SIftekharul Islam 3cd789508SIftekharul Islam <div class="row column"> 4e126be7aSMichael Davis <h1>Server power operations</h1> 5*706b75b3SMichael Davis <div class="power__current-status page-header"> 6cd789508SIftekharul Islam <h2 class="inline h4">Current status</h2> 78819b7a7SMichael 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> 8cd789508SIftekharul Islam </div> 9cd789508SIftekharul Islam </div> 10cd789508SIftekharul Islam <div class="row column"> 11cd789508SIftekharul 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'}"> 12cd789508SIftekharul Islam <p class="inline">{{dataService.server_id}}</p> 137f89fad6SMichael Davis <h3 class="power__state inline no-margin h3"><span>{{dataService.server_state}}</span></h3> 14cd789508SIftekharul Islam </div> 15cd789508SIftekharul Islam </div> 16cd789508SIftekharul Islam <div class="row column"> 17cd789508SIftekharul Islam <div class="row column"> 1846f0a1f8SMichael Davis <h3 class="h4 subhead">Select a power operation</h3> 19cd789508SIftekharul Islam </div> 20cd789508SIftekharul Islam 21cd789508SIftekharul Islam <!-- Power on displays only when server is shutdown --> 22cd789508SIftekharul 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}"> 23*706b75b3SMichael 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" aria-hidden="true">Power on</button> 2446f0a1f8SMichael Davis <p class="inline">Attempts to power on the server</p> 25cd789508SIftekharul Islam </div> 26cd789508SIftekharul Islam 27cd789508SIftekharul Islam <!-- Power reboot/shutdown options : when server is off all of these are hidden. When one option is selected, the others are disabled. --> 28cd789508SIftekharul 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}"> 29*706b75b3SMichael Davis <button id="power__warm-boot" class="btn-secondary inline" ng-click="warmRebootConfirm()" role="button" ng-disabled="dataService.server_unreachable"><i aria-hidden="true">↻</i> Warm reboot</button> 3046f0a1f8SMichael Davis <p class="inline">Attempts to perform an orderly shutdown before restarting the server</p> 31b8a41c18SMichael Davis <confirm title="warm reboot" confirm="warmboot_confirm" ng-show="warmboot_confirm" callback="warmReboot"></confirm> 32cd789508SIftekharul Islam </div> 33cd789508SIftekharul 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}"> 34*706b75b3SMichael Davis <button id="power__cold-boot" class="btn-secondary inline" ng-click="coldRebootConfirm()" role="button" ng-disabled="dataService.server_unreachable"><i aria-hidden="true">↻</i> Cold reboot</button> 3546f0a1f8SMichael Davis <p class="inline">Shuts down the server immediately, then restarts it</p> 36b8a41c18SMichael Davis <confirm title="cold reboot" confirm="coldboot_confirm" ng-show="coldboot_confirm" cancel="coldbootCancel" callback="coldReboot"></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 && !orderly_confirm) || dataService.loading, transitionAll: confirm && orderly_confirm}"> 39*706b75b3SMichael Davis <button id="power__soft-shutdown" class="btn-secondary inline" ng-click="orderlyShutdownConfirm()" role="button" ng-disabled="dataService.server_unreachable"><img aria-hidden="true" src="assets/images/icon-power.svg" />Orderly shutdown</button> 4046f0a1f8SMichael Davis <p class="inline">Attempts to stop all software on the server before removing power</p> 41b8a41c18SMichael Davis <confirm title="orderly shutdown" confirm="orderly_confirm" ng-show="orderly_confirm" cancel="orderlyShutdownCancel" callback="orderlyShutdown"></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 && !immediately_confirm) || dataService.loading, transitionAll: confirm && immediately_confirm}"> 44*706b75b3SMichael Davis <button id="power__hard-shutdown" class="btn-secondary inline" ng-click="immediateShutdownConfirm()" role="button" ng-disabled="dataService.server_unreachable"><img aria-hidden="true" src="assets/images/icon-power.svg" />Immediate shutdown</button> 4546f0a1f8SMichael Davis <p class="inline">Removes power from the server without waiting for software to stop</p> 46b8a41c18SMichael Davis <confirm title="immediate shutdown" confirm="immediately_confirm" ng-show="immediately_confirm" cancel="immediatelyShutdownCancel" callback="immediateShutdown"></confirm> 47cd789508SIftekharul Islam </div> 48cd789508SIftekharul Islam </div> 49cd789508SIftekharul Islam</div>