Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated IBM i service functions #305

Open
wants to merge 1 commit into
base: 1110
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions src/locales/en-US.json
Original file line number Diff line number Diff line change
Expand Up @@ -823,12 +823,10 @@
"concurrentMaintenancePowerOffDesc": "Use this function to power off the power domain that includes resources that are currently in a disk unit attention state.",
"concurrentMaintenancePowerOn": "Concurrent Maintenance Power On Domain (Function 69)",
"concurrentMaintenancePowerOnDesc": "Use this function to power on the power domain that was powered off by using function 68.",
"disableRemoteService": "Disable Remote Service (Function 65)",
"disableRemoteServiceDesc": "Use this function to deactivate a remote service session.",
"consoleServiceFunction": "Console Service Function (Function 65)",
"consoleServiceFunctionDesc": "Use this function to initiate console recovery (IBM i 7.5, or later).",
"diskUnitIOP": "Disk Unit IOP Reset/Reload (Function 67)",
"diskUnitIOPDesc": "Use this function to initiate an I/O processor dump and reset/reload of an IOP that controls resources that are currently in a disk unit attention state.",
"enableRemoteService": "Enable Remote Service (Function 66)",
"enableRemoteServiceDesc": "Use this function to activate a remote service session.",
"execute": "Execute",
"iopControlStorageDump": "IOP Control Storage Dump (Function 70)",
"iopControlStorageDumpDesc": "Use this function to initiate an I/O processor dump and reset/reload of the IOP that was designated to control the load source device when the logical partition was activated.",
Expand Down
27 changes: 4 additions & 23 deletions src/views/Logs/IBMiServiceFunctions/IBMiServiceFunctions.vue
Original file line number Diff line number Diff line change
Expand Up @@ -44,11 +44,11 @@
<b-row class="section-divider">
<b-col class="d-flex align-items-center justify-content-between">
<dl class="mt-3 mr-3 w-75">
<dt id="disableRemoteService-label">
{{ $t('pageIbmiServiceFunctions.disableRemoteService') }}
<dt id="consoleServiceFunction-label">
{{ $t('pageIbmiServiceFunctions.consoleServiceFunction') }}
</dt>
<dd id="disableRemoteService-description">
{{ $t('pageIbmiServiceFunctions.disableRemoteServiceDesc') }}
<dd id="consoleServiceFunction-description">
{{ $t('pageIbmiServiceFunctions.consoleServiceFunctionDesc') }}
</dd>
</dl>
<b-button
Expand All @@ -60,25 +60,6 @@
</b-button>
</b-col>
</b-row>
<b-row class="section-divider">
<b-col class="d-flex align-items-center justify-content-between">
<dl class="mt-3 mr-3 w-75">
<dt id="enableRemoteService-label">
{{ $t('pageIbmiServiceFunctions.enableRemoteService') }}
</dt>
<dd id="enableRemoteService-description">
{{ $t('pageIbmiServiceFunctions.enableRemoteServiceDesc') }}
</dd>
</dl>
<b-button
variant="primary"
:disabled="isFunctionDisabled(66)"
@click="exceuteFunction(66)"
>
{{ $t('pageIbmiServiceFunctions.execute') }}
</b-button>
</b-col>
</b-row>
<b-row class="section-divider">
<b-col class="d-flex align-items-center justify-content-between">
<dl class="mt-3 mr-3 w-75">
Expand Down