summaryrefslogtreecommitdiff
path: root/src/views/Control/ServerPowerOperations/ServerPowerOperations.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/views/Control/ServerPowerOperations/ServerPowerOperations.vue')
-rw-r--r--src/views/Control/ServerPowerOperations/ServerPowerOperations.vue30
1 files changed, 15 insertions, 15 deletions
diff --git a/src/views/Control/ServerPowerOperations/ServerPowerOperations.vue b/src/views/Control/ServerPowerOperations/ServerPowerOperations.vue
index 4ea77655..9e030837 100644
--- a/src/views/Control/ServerPowerOperations/ServerPowerOperations.vue
+++ b/src/views/Control/ServerPowerOperations/ServerPowerOperations.vue
@@ -9,15 +9,15 @@
<b-row>
<b-col>
<dl>
- <dt>{{ $t('pageServerPowerOperations.hostStatus') }}</dt>
+ <dt>{{ $t('pageServerPowerOperations.serverStatus') }}</dt>
<dd
- v-if="hostStatus === 'on'"
+ v-if="serverStatus === 'on'"
data-test-id="powerServerOps-text-hostStatus"
>
{{ $t('global.status.on') }}
</dd>
<dd
- v-else-if="hostStatus === 'off'"
+ v-else-if="serverStatus === 'off'"
data-test-id="powerServerOps-text-hostStatus"
>
{{ $t('global.status.off') }}
@@ -51,7 +51,7 @@
<b-row>
<b-col v-if="hasBootSourceOptions" sm="8" md="6" xl="4">
<page-section
- :section-title="$t('pageServerPowerOperations.hostOsBootSettings')"
+ :section-title="$t('pageServerPowerOperations.serverBootSettings')"
>
<boot-settings />
</page-section>
@@ -68,7 +68,7 @@
{{ $t('pageServerPowerOperations.operationInProgress') }}
</alert>
</template>
- <template v-else-if="hostStatus === 'off'">
+ <template v-else-if="serverStatus === 'off'">
<b-button
variant="primary"
data-test-id="serverPowerOperations-button-powerOn"
@@ -170,8 +170,8 @@ export default {
};
},
computed: {
- hostStatus() {
- return this.$store.getters['global/hostStatus'];
+ serverStatus() {
+ return this.$store.getters['global/serverStatus'];
},
isOperationInProgress() {
return this.$store.getters['controls/isOperationInProgress'];
@@ -180,11 +180,11 @@ export default {
return this.$store.getters['controls/lastPowerOperationTime'];
},
oneTimeBootEnabled() {
- return this.$store.getters['hostBootSettings/overrideEnabled'];
+ return this.$store.getters['serverBootSettings/overrideEnabled'];
},
hasBootSourceOptions() {
let bootOptions = this.$store.getters[
- 'hostBootSettings/bootSourceOptions'
+ 'serverBootSettings/bootSourceOptions'
];
return bootOptions.length !== 0;
},
@@ -197,14 +197,14 @@ export default {
);
});
Promise.all([
- this.$store.dispatch('hostBootSettings/getBootSettings'),
+ this.$store.dispatch('serverBootSettings/getBootSettings'),
this.$store.dispatch('controls/getLastPowerOperationTime'),
bootSettingsPromise,
]).finally(() => this.endLoader());
},
methods: {
powerOn() {
- this.$store.dispatch('controls/hostPowerOn');
+ this.$store.dispatch('controls/serverPowerOn');
},
rebootServer() {
const modalMessage = this.$t(
@@ -220,13 +220,13 @@ export default {
this.$bvModal
.msgBoxConfirm(modalMessage, modalOptions)
.then((confirmed) => {
- if (confirmed) this.$store.dispatch('controls/hostSoftReboot');
+ if (confirmed) this.$store.dispatch('controls/serverSoftReboot');
});
} else if (this.form.rebootOption === 'immediate') {
this.$bvModal
.msgBoxConfirm(modalMessage, modalOptions)
.then((confirmed) => {
- if (confirmed) this.$store.dispatch('controls/hostHardReboot');
+ if (confirmed) this.$store.dispatch('controls/serverHardReboot');
});
}
},
@@ -244,14 +244,14 @@ export default {
this.$bvModal
.msgBoxConfirm(modalMessage, modalOptions)
.then((confirmed) => {
- if (confirmed) this.$store.dispatch('controls/hostSoftPowerOff');
+ if (confirmed) this.$store.dispatch('controls/serverSoftPowerOff');
});
}
if (this.form.shutdownOption === 'immediate') {
this.$bvModal
.msgBoxConfirm(modalMessage, modalOptions)
.then((confirmed) => {
- if (confirmed) this.$store.dispatch('controls/hostHardPowerOff');
+ if (confirmed) this.$store.dispatch('controls/serverHardPowerOff');
});
}
},