Skip to content

Commit 1f319f9

Browse files
committed
Fix markdown lint
1 parent 8c4daa8 commit 1f319f9

File tree

6 files changed

+15
-13
lines changed

6 files changed

+15
-13
lines changed

cookbooks/boxcutter_acme/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ Optional fields:
6767
endpoint `https://acme-staging-v02.api.letsencrypt.org/directory`.
6868
- `extra_parameters`: Additional global options to be added to the command
6969
line, not covered by required fields (`--dns-resolvers value`). Default is `--http`.
70-
- `extra_environment`: Additional environment variables to be configured for
70+
- `extra_environment`: Additional environment variables to be configured for
7171
the renew script. Usually environment variables required for the DNS
7272
tokens.
7373

cookbooks/boxcutter_docker/README.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,9 +127,7 @@ removed. The following options are supported as keys in the hash:
127127
- `extra_options` - specify additional options supported by the
128128
`docker container run` command not supported with predefined keys.
129129
- `action` action to perform on the container, defaults to `run`:
130-
- `run` - the default action, creates and starts the container
131-
- `stop` - stops the container
132-
- `start` - starts the container
130+
`[run|start|stop]`
133131

134132
```aiignore
135133
node.default['boxcutter_docker']['volumes']['postgres_data'] = {}

cookbooks/boxcutter_docker/compliance/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
# compliance
1+
compliance
2+
==========
23

34
This directory contains Cinc Auditor profile, waiver and input objects which are used with the Cinc Infra Compliance Phase.
45

cookbooks/boxcutter_sonatype/README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ NEXUS_PASSWORD=superseekret
8181
NEXUS_SERVER=https://hq0-nexus01.sandbox.polymathrobotics.dev
8282
COMPONENT_ID=cG9seW1hdGgtaW1hZ2VzOjE3MTU2MGEy
8383
curl --verbose --user ci-sandbox:${CI_PASSWORD} \
84-
--request DELETE "${NEXUS_SERVER}/service/rest/v1/components/${COMPONENT_ID}"
84+
--request DELETE "${NEXUS_SERVER}/service/rest/v1/components/${COMPONENT_ID}"
8585
# Downlaod
8686
NEXUS_SERVER=https://example-nexus.boxcutter.dev
8787
curl --verbose -LOJ \
@@ -92,7 +92,7 @@ NEXUS_PASSWORD=superseekret
9292
NEXUS_SERVER=http://example-nexus.boxcutter.dev
9393
curl --verbose --user ${NEXUS_USERNAME}:${NEXUS_PASSWORD} \
9494
--output hello.txt \
95-
"${NEXUS_SERVER}/repository/polymath-images/sandbox/tmp/hello.txt"
95+
"${NEXUS_SERVER}/repository/polymath-images/sandbox/tmp/hello.txt"
9696
```
9797

9898
Apt Repositories
@@ -156,11 +156,11 @@ NEXUS_SERVER=https://example-nexus.boxcutter.dev
156156
mkdir -p ~/.config/pip
157157
cat >~/.config/pip/pip.conf <<EOF
158158
[global]
159-
# pip search --index (XML-RPC search)
159+
# pip search --index (XML-RPC search)
160160
# https://pip.pypa.io/en/stable/cli/pip_search/
161161
index = https://example-nexus.boxcutter.dev/repository/python-proxy/pypi
162162
163-
# pip install --index-url
163+
# pip install --index-url
164164
# https://pip.pypa.io/en/stable/cli/pip_install/
165165
index-url = https://example-nexus.boxcutter.dev/repository/python-proxy/simple
166166
EOF
@@ -174,7 +174,7 @@ pip install pulumi
174174
docker run -it --rm \
175175
--entrypoint /bin/bash \
176176
docker.io/boxcutter/python:3.10-noble
177-
177+
178178
NEXUS_SERVER=http://host.docker.internal:2404
179179
pip install \
180180
--trusted-host host.docker.internal \
@@ -188,11 +188,11 @@ docker run -it --rm \
188188
mkdir -p ~/.config/pip
189189
cat >~/.config/pip/pip.conf <<EOF
190190
[global]
191-
# pip search --index (XML-RPC search)
191+
# pip search --index (XML-RPC search)
192192
# https://pip.pypa.io/en/stable/cli/pip_search/
193193
index = http://host.docker.internal:2404/repository/python-proxy/pypi
194194
195-
# pip install --index-url
195+
# pip install --index-url
196196
# https://pip.pypa.io/en/stable/cli/pip_install/
197197
index-url = http://host.docker.internal:2404/repository/python-proxy/simple
198198
trusted-host = host.docker.internal

cookbooks/fb_sssd/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ is rendered as:
3939
default_shell = /bin/bash
4040
```
4141

42-
If the value is an array it is joined into a string using `, `, ala:
42+
If the value is an array it is joined into a string using `,`, ala:
4343

4444
```ruby
4545
node.default['fb_sssd']['config']['sssd']['services'] = [

docs/bootstrap_vm.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,7 @@ sudo cp centos-stream-9-cloud-init.img /var/lib/libvirt/boot/centos-stream-9-clo
309309
```
310310

311311
Initialize the virtual machine:
312+
312313
```
313314
# Perform a customization run by loading the cloud-init image with the VM
314315
virt-install \
@@ -390,6 +391,7 @@ virsh undefine centos-stream-9 --nvram --remove-all-storage
390391
```
391392

392393
Run syscheck
394+
393395
```
394396
docker container run --rm --interactive --tty \
395397
--mount type=bind,source="$(pwd)",target=/share \
@@ -399,6 +401,7 @@ docker container run --rm --interactive --tty \
399401
```
400402

401403
### Install cinc-client and chefctl in the image
404+
402405
```
403406
virsh start centos-stream-9
404407
# Login to the VM with automat/superseekret

0 commit comments

Comments
 (0)