Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f02f46f

Browse files
authoredFeb 28, 2020
Fix mangled code blocks (chef#2359)
Signed-off-by: IanMadd <[email protected]>
1 parent 2cc46d6 commit f02f46f

4 files changed

+49
-53
lines changed
 

‎content/ctl_chef_client.md

+29-33
Original file line numberDiff line numberDiff line change
@@ -605,21 +605,21 @@ ways this can be done:
605605
- Use `su` to become the root user, and then run the Chef Infra
606606
Client. For example:
607607

608-
> ``` bash
609-
> su
610-
> ```
611-
>
612-
> and then:
613-
>
614-
> ``` bash
615-
> # chef-client
616-
> ```
608+
``` bash
609+
su
610+
```
611+
612+
and then:
613+
614+
``` bash
615+
# chef-client
616+
```
617617

618618
- Use the sudo utility
619619

620-
> ``` bash
621-
> sudo chef-client
622-
> ```
620+
``` bash
621+
sudo chef-client
622+
```
623623

624624
- Give a user access to read `/etc/chef` and also the files accessed
625625
by the Chef Infra Client. This requires super user privileges and,
@@ -839,28 +839,24 @@ installing from CD.
839839

840840
``` bash
841841
Add Additional Language Environments
842-
```
843842

844-
> Type or select values in entry fields. Press Enter AFTER making
845-
> all desired changes.
846-
>
847-
> > \[Entry Fields\]
848-
>
849-
> > CULTURAL convention to install + LANGUAGE translation to
850-
> > install +
851-
>
852-
> - INPUT device/directory for software \[/dev/cd0\] + EXTEND file
853-
> systems if space needed? yes +
854-
>
855-
> WPAR Management
856-
>
857-
> : Perform Operation in Global Environment yes + Perform
858-
> Operation on Detached WPARs no + Detached WPAR Names
859-
> \[_all_wpars\] + Remount Installation Device in WPARs
860-
> yes + Alternate WPAR Installation Device \[\]
861-
>
862-
> F1=Help F2=Refresh F3=Cancel F4=List F5=Reset F6=Command F7=Edit
863-
> F8=Image F9=Shell F10=Exit Enter=Do
843+
Type or select values in entry fields. Press Enter AFTER making
844+
all desired changes.
845+
846+
[Entry Fields]
847+
848+
CULTURAL convention to install + LANGUAGE translation to
849+
install + INPUT device/directory for software [/dev/cd0] + EXTEND file
850+
systems if space needed? yes + WPAR Management
851+
852+
Perform Operation in Global Environment yes + Perform
853+
Operation on Detached WPARs no + Detached WPAR Names
854+
[_all_wpars] + Remount Installation Device in WPARs
855+
yes + Alternate WPAR Installation Device []
856+
857+
F1=Help F2=Refresh F3=Cancel F4=List F5=Reset F6=Command F7=Edit
858+
F8=Image F9=Shell F10=Exit Enter=Do
859+
```
864860

865861
3. Cursor over the first two entries---`CULTURAL convention to install`
866862
and `LANGUAGE translation to install`---and use `F4` to navigate

‎content/release_notes_chefdk.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -2075,7 +2075,7 @@ What's New in 2.4.17
20752075
Run:
20762076

20772077
``` none
2078-
>> chef install ./base.rb
2078+
chef install ./base.rb
20792079

20802080
Building policy base
20812081
Expanded run list: recipe[motd]
@@ -2105,7 +2105,7 @@ What's New in 2.4.17
21052105
Run:
21062106

21072107
``` none
2108-
>> chef install ./users.rb
2108+
chef install ./users.rb
21092109

21102110
Building policy users
21112111
Expanded run list: recipe[motd::default], recipe[user]

‎content/server_overview.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -398,10 +398,10 @@ configure external PostgreSQL for use with the Chef Infra Server:
398398
: The password for the user specified by `postgresql['db_superuser']`.
399399
Required when `postgresql['external']` is set to `true`.
400400

401-
> The db_superuser_password can also be set using
402-
> `chef-server-ctl set-db-superuser-password` from the [Secrets
403-
> Management](/ctl_chef_server/#ctl-chef-server-secrets-management)
404-
> commands.
401+
The db_superuser_password can also be set using
402+
`chef-server-ctl set-db-superuser-password` from the [Secrets
403+
Management](/ctl_chef_server/#ctl-chef-server-secrets-management)
404+
commands.
405405

406406
`postgresql['external']`
407407

‎content/upgrade_server_ha_v2.md

+14-14
Original file line numberDiff line numberDiff line change
@@ -57,15 +57,15 @@ cluster downtime.
5757
5858
RHEL and CentOS:
5959
60-
> ``` bash
61-
> yum install PATH_TO_FILE.rpm
62-
> ```
60+
``` bash
61+
yum install PATH_TO_FILE.rpm
62+
```
6363
6464
Debian and Ubuntu:
6565
66-
> ``` bash
67-
> dpkg -i PATH_TO_FILE.deb
68-
> ```
66+
``` bash
67+
dpkg -i PATH_TO_FILE.deb
68+
```
6969
7070
3. On the leader, run the following command to take the node down for
7171
the upgrade:
@@ -137,18 +137,18 @@ rejoin after each upgrade.
137137
138138
RHEL and CentOS:
139139
140-
> ``` bash
141-
> yum install PATH_TO_FILE.rpm
142-
> ```
140+
``` bash
141+
yum install PATH_TO_FILE.rpm
142+
```
143143
144144
Debian and Ubuntu:
145145
146-
> ``` bash
147-
> dpkg -i PATH_TO_FILE.deb
148-
> ```
146+
``` bash
147+
dpkg -i PATH_TO_FILE.deb
148+
```
149149
150-
> You may also want to look at the chef-ingredient cookbook to
151-
> automate downloading and installing the latest package.
150+
You may also want to look at the chef-ingredient cookbook to
151+
automate downloading and installing the latest package.
152152
153153
2. Run the upgrade command
154154

0 commit comments

Comments
 (0)
Please sign in to comment.