Skip to content

Commit 73329f7

Browse files
committed
Remove language from code fences
to avoid the problem of replaceable text indicates like <this> not showing up in the output page.
1 parent 071d180 commit 73329f7

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

content/actions/creating-actions/setting-exit-codes-for-actions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ For more information, see "[Creating a JavaScript action](/articles/creating-a-j
4242
If you are creating a Docker container action, you can set a failure exit code in your `entrypoint.sh` script. For example:
4343

4444
{% raw %}
45-
```shell
45+
```
4646
if <condition> ; then
4747
echo "Game over!"
4848
exit 1

content/admin/enterprise-management/evacuating-a-cluster-node.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,50 +14,50 @@ If you're taking a node offline that has any data services (like git, pages, or
1414

1515
1. Find the `uuid` of the node in with the `ghe-config`command.
1616

17-
```shell
17+
```
1818
$ ghe-config cluster._hostname_.uuid
1919
```
2020
21-
2. You'll need to monitor the status of your node while the data is being copied. Ideally, the node shouldn't be taken offline until the copying is complete. To monitor the status of your node, run any of the following commands:
21+
2. You'll need to monitor the status of your node while the data is being copied. Ideally, the node shouldn't be taken offline until the copying is complete. To monitor the status of your node, run any of the following commands:
2222
2323
For Git
24-
```shell
24+
```
2525
ghe-spokes evac-status
2626
```
2727
For {% data variables.product.prodname_pages %}
2828
{% raw %}
29-
```shell
29+
```
3030
echo "select count(*) from pages_replicas where host = 'pages-server-<uuid>'" | ghe-dbconsole -y
3131
```
3232
{% endraw %}
3333
For storage
34-
```shell
34+
```
3535
ghe-storage evacuation-status
3636
```
3737
38-
3. After the copying is complete, you can evacuate the storage service. Run any of the following commands:
38+
3. After the copying is complete, you can evacuate the storage service. Run any of the following commands:
3939
4040
For Git
4141
{% raw %}
42-
```shell
42+
```
4343
ghe-spokes server evacuate git-server-<uuid>
4444
```
4545
{% endraw %}
4646
For {% data variables.product.prodname_pages %}
4747
{% raw %}
48-
```shell
48+
```
4949
ghe-dpages evacuate pages-server-<uuid>
5050
```
5151
{% endraw %}
5252
For storage, take the node offline
5353
{% raw %}
54-
```shell
54+
```
5555
ghe-storage offline storage-server-<uuid>
5656
```
5757
{% endraw %}
5858
then evacuate
59-
{% raw %}
60-
```shell
59+
{% raw %}
60+
```
6161
ghe-storage evacuate storage-server-<uuid>
6262
```
6363
{% endraw %}

0 commit comments

Comments
 (0)