Skip to content

Commit 7adc0b6

Browse files
committed
commands: disable aside to make more space
and split command in two lines. The ">" breaks the copy paste only when at the beginning of a line.
1 parent 7a39d49 commit 7adc0b6

File tree

163 files changed

+489
-163
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

163 files changed

+489
-163
lines changed

src/documentation/developer/externalcommands/_command.tpl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {% cmd %};
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031

31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

src/documentation/developer/externalcommands/acknowledge_host_problem.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {"args":[{"name":"host_name","type":"host"},{"name":"sticky","ty
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031
31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

src/documentation/developer/externalcommands/acknowledge_host_problem_expire.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {"args":[{"name":"host_name","type":"host"},{"name":"sticky","ty
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031
31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

src/documentation/developer/externalcommands/acknowledge_svc_problem.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {"args":[{"name":"service","type":"service"},{"name":"sticky","t
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031
31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

src/documentation/developer/externalcommands/acknowledge_svc_problem_expire.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {"args":[{"name":"service","type":"service"},{"name":"sticky","t
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031
31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

src/documentation/developer/externalcommands/add_host_comment.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {"args":[{"name":"host_name","type":"host"},{"name":"persistent"
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031
31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

src/documentation/developer/externalcommands/add_svc_comment.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {"args":[{"name":"service","type":"service"},{"name":"persistent
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031
31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

src/documentation/developer/externalcommands/change_contact_host_notification_timeperiod.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {"args":[{"name":"contact_name","type":"contact"},{"name":"notif
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031
31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

src/documentation/developer/externalcommands/change_contact_modattr.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {"args":[{"name":"contact_name","type":"contact"},{"name":"value
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031
31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

src/documentation/developer/externalcommands/change_contact_modhattr.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ prev:
55
link: '/documentation/developer/externalcommands/'
66
next: false
77
breadcrumb: true
8+
aside: false
89
---
910

1011
<script setup>
@@ -28,5 +29,6 @@ const command = {"args":[{"name":"contact_name","type":"contact"},{"name":"value
2829
# This is a shell script showing how to submit the {{ command.name }} command
2930
# to Naemon. Adjust variables to fit your environment as necessary.
3031
31-
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" `date +%s` > /var/lib/naemon/naemon.cmd
32+
printf "[%lu] {{ command.name }}{{ command.exampleArgStr }}\n" \
33+
`date +%s` > /var/lib/naemon/naemon.cmd
3234
```

0 commit comments

Comments
 (0)