1*a1d238f3SIftekharul Islam<loader loading="dataService.loading || loading"></loader> 2cd789508SIftekharul Islam<div id="power-operations"> 3cd789508SIftekharul Islam <div class="row column"> 4e126be7aSMichael Davis <h1>Server power operations</h1> 5706b75b3SMichael Davis <div class="power__current-status page-header"> 6cd789508SIftekharul Islam <h2 class="inline h4">Current status</h2> 7b028b4c2SCamVan Nguyen <!-- TODO: openbmc/openbmc#2957 display correct last power 8b028b4c2SCamVan Nguyen operation time, need REST call. 9b028b4c2SCamVan Nguyen 108819b7a7SMichael 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> 11b028b4c2SCamVan Nguyen --> 12cd789508SIftekharul Islam </div> 13cd789508SIftekharul Islam </div> 14cd789508SIftekharul Islam <div class="row column"> 1578453481SMichael Davis <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 == 'Standby'}"> 166ca92edcSIftekharul Islam <p class="inline">{{dataService.hostname}} - {{dataService.server_id}}</p> 177a5ce461SIftekharul Islam <h3 class="power__state inline no-margin h3"><span>{{dataService.server_state | quiescedToError}}</span></h3> 18cd789508SIftekharul Islam </div> 19cd789508SIftekharul Islam </div> 20cd789508SIftekharul Islam <div class="row column"> 21cd789508SIftekharul Islam <div class="row column"> 2246f0a1f8SMichael Davis <h3 class="h4 subhead">Select a power operation</h3> 23cd789508SIftekharul Islam </div> 240d028015SIftekharul Islam <span class="inactive-message" ng-show="dataService.server_state == 'Unreachable'">There are no power operations to display while a power operation is in progress. When complete, any new power operations will be displayed here.</span> 25cd789508SIftekharul Islam <!-- Power on displays only when server is shutdown --> 26db28a387SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Running' || dataService.server_state == 'Quiesced' || dataService.server_state == 'Unreachable'" ng-class="{disabled: dataService.server_unreachable || (confirm && !power_confirm) || dataService.loading, transitionAll: confirm && power_confirm}"> 27bbcf670aSEd Tanous <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> 2846f0a1f8SMichael Davis <p class="inline">Attempts to power on the server</p> 29cd789508SIftekharul Islam </div> 30cd789508SIftekharul Islam <!-- Power reboot/shutdown options : when server is off all of these are hidden. When one option is selected, the others are disabled. --> 31db28a387SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Off' || dataService.server_state == 'Unreachable'" ng-class="{disabled: dataService.server_unreachable || (confirm && !warmboot_confirm) || dataService.loading, transitionAll: confirm && warmboot_confirm}"> 32706b75b3SMichael 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> 3346f0a1f8SMichael Davis <p class="inline">Attempts to perform an orderly shutdown before restarting the server</p> 34b8a41c18SMichael Davis <confirm title="warm reboot" confirm="warmboot_confirm" ng-show="warmboot_confirm" callback="warmReboot"></confirm> 35cd789508SIftekharul Islam </div> 36db28a387SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Off' || dataService.server_state == 'Unreachable'" ng-class="{disabled: dataService.server_unreachable || (confirm && !coldboot_confirm) || dataService.loading, transitionAll: confirm && coldboot_confirm}"> 37706b75b3SMichael 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> 3846f0a1f8SMichael Davis <p class="inline">Shuts down the server immediately, then restarts it</p> 39b8a41c18SMichael Davis <confirm title="cold reboot" confirm="coldboot_confirm" ng-show="coldboot_confirm" cancel="coldbootCancel" callback="coldReboot"></confirm> 40cd789508SIftekharul Islam </div> 41db28a387SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Off' || dataService.server_state == 'Unreachable'" ng-class="{disabled: dataService.server_unreachable || (confirm && !orderly_confirm) || dataService.loading, transitionAll: confirm && orderly_confirm}"> 42bbcf670aSEd Tanous <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> 4346f0a1f8SMichael Davis <p class="inline">Attempts to stop all software on the server before removing power</p> 44b8a41c18SMichael Davis <confirm title="orderly shutdown" confirm="orderly_confirm" ng-show="orderly_confirm" cancel="orderlyShutdownCancel" callback="orderlyShutdown"></confirm> 45cd789508SIftekharul Islam </div> 46db28a387SIftekharul Islam <div class="row column power-option" ng-hide="dataService.server_state == 'Off' || dataService.server_state == 'Unreachable'" ng-class="{disabled: dataService.server_unreachable || (confirm && !immediately_confirm) || dataService.loading, transitionAll: confirm && immediately_confirm}"> 47bbcf670aSEd Tanous <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> 4846f0a1f8SMichael Davis <p class="inline">Removes power from the server without waiting for software to stop</p> 49b8a41c18SMichael Davis <confirm title="immediate shutdown" confirm="immediately_confirm" ng-show="immediately_confirm" cancel="immediatelyShutdownCancel" callback="immediateShutdown"></confirm> 50cd789508SIftekharul Islam </div> 51cd789508SIftekharul Islam </div> 52cd789508SIftekharul Islam</div> 53