Skip to content

Commit cd34b8f

Browse files
committed
Fix broken ordered list rendering on persistent-root-dotfiles.md
1 parent d7c38d3 commit cd34b8f

File tree

1 file changed

+60
-67
lines changed

1 file changed

+60
-67
lines changed

docs/persistent-root-dotfiles.md

+60-67
Original file line numberDiff line numberDiff line change
@@ -11,42 +11,40 @@ Double-click the source code blocks to expand and highlight the contained code.
1111

1212
### Manifests
1313

14-
1. `bash_history_link.xml`
15-
<!-- markdownlint-disable line-length -->
14+
<!-- markdownlint-disable line-length -->
1615

17-
<?xml version='1.0'?>
18-
<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
19-
<service_bundle type='manifest' name='export'>
20-
<service name='site/bash_history' type='service' version='0'>
21-
<create_default_instance enabled='true'/>
22-
<single_instance/>
23-
<dependency name='network' grouping='require_all' restart_on='error' type='service'>
24-
<service_fmri value='svc:/milestone/network:default'/>
25-
</dependency>
26-
<dependency name='filesystem' grouping='require_all' restart_on='error' type='service'>
27-
<service_fmri value='svc:/system/filesystem/local'/>
28-
</dependency>
29-
<method_context/>
30-
<exec_method name='start' type='method' exec='ln -nsf /opt/custom/.bash_history /root/.bash_history' timeout_seconds='60'/>
31-
<exec_method name='stop' type='method' exec=':kill' timeout_seconds='60'/>
32-
<property_group name='startd' type='framework'>
33-
<propval name='duration' type='astring' value='transient'/>
34-
<propval name='ignore_error' type='astring' value='core,signal'/>
35-
</property_group>
36-
<property_group name='application' type='application'/>
37-
<stability value='Evolving'/>
38-
<template>
39-
<common_name>
40-
<loctext xml:lang='C'>Link root .bash_history to /opt/custom/.bash_history</loctext>
41-
</common_name>
42-
</template>
43-
</service>
44-
</service_bundle>
16+
#### `root_bash_history.xml`
4517

46-
<!--- markdownlint-enable line-length -->
18+
<?xml version='1.0'?>
19+
<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
20+
<service_bundle type='manifest' name='export'>
21+
<service name='site/bash_history' type='service' version='0'>
22+
<create_default_instance enabled='true'/>
23+
<single_instance/>
24+
<dependency name='network' grouping='require_all' restart_on='error' type='service'>
25+
<service_fmri value='svc:/milestone/network:default'/>
26+
</dependency>
27+
<dependency name='filesystem' grouping='require_all' restart_on='error' type='service'>
28+
<service_fmri value='svc:/system/filesystem/local'/>
29+
</dependency>
30+
<method_context/>
31+
<exec_method name='start' type='method' exec='ln -nsf /opt/custom/.bash_history /root/.bash_history' timeout_seconds='60'/>
32+
<exec_method name='stop' type='method' exec=':kill' timeout_seconds='60'/>
33+
<property_group name='startd' type='framework'>
34+
<propval name='duration' type='astring' value='transient'/>
35+
<propval name='ignore_error' type='astring' value='core,signal'/>
36+
</property_group>
37+
<property_group name='application' type='application'/>
38+
<stability value='Evolving'/>
39+
<template>
40+
<common_name>
41+
<loctext xml:lang='C'>Link root .bash_history to /opt/custom/.bash_history</loctext>
42+
</common_name>
43+
</template>
44+
</service>
45+
</service_bundle>
4746

48-
2. `bashrc_link.xml`
49-
<!--- markdownlint-disable line-length -->
47+
#### `root_bashrc.xml`
5048

5149
<?xml version='1.0'?>
5250
<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
@@ -77,38 +75,33 @@ Double-click the source code blocks to expand and highlight the contained code.
7775
</service>
7876
</service_bundle>
7977

80-
<!--- markdownlint-enable line-length -->
81-
82-
3. `inputrc_link.xml`
83-
<!--- markdownlint-disable line-length -->
84-
85-
<?xml version='1.0'?>
86-
<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
87-
<service_bundle type='manifest' name='export'>
88-
  <service name='site/inputrc_link' type='service' version='0'>
89-
    <create_default_instance enabled='true'/>
90-
    <single_instance/>
91-
    <dependency name='network' grouping='require_all' restart_on='error' type='service'>
92-
      <service_fmri value='svc:/milestone/network:default'/>
93-
    </dependency>
94-
    <dependency name='filesystem' grouping='require_all' restart_on='error' type='service'>
95-
      <service_fmri value='svc:/system/filesystem/local'/>
96-
    </dependency>
97-
    <method_context/>
98-
    <exec_method name='start' type='method' exec='ln -nsf /opt/custom/.inputrc /root/.inputrc' timeout_seconds='60'/>
99-
    <exec_method name='stop' type='method' exec=':kill' timeout_seconds='60'/>
100-
    <property_group name='startd' type='framework'>
101-
      <propval name='duration' type='astring' value='transient'/>
102-
      <propval name='ignore_error' type='astring' value='core,signal'/>
103-
    </property_group>
104-
    <property_group name='application' type='application'/>
105-
    <stability value='Evolving'/>
106-
    <template>
107-
      <common_name>
108-
        <loctext xml:lang='C'>Link root .inputrc to /opt/custom/.inputrc</loctext>
109-
      </common_name>
110-
    </template>
111-
  </service>
112-
</service_bundle>
78+
#### `root_inputrc.xml`
11379

114-
<!--- markdownlint-enable line-length -->
80+
<?xml version='1.0'?>
81+
<!DOCTYPE service_bundle SYSTEM '/usr/share/lib/xml/dtd/service_bundle.dtd.1'>
82+
<service_bundle type='manifest' name='export'>
83+
  <service name='site/inputrc_link' type='service' version='0'>
84+
    <create_default_instance enabled='true'/>
85+
    <single_instance/>
86+
    <dependency name='network' grouping='require_all' restart_on='error' type='service'>
87+
      <service_fmri value='svc:/milestone/network:default'/>
88+
    </dependency>
89+
    <dependency name='filesystem' grouping='require_all' restart_on='error' type='service'>
90+
      <service_fmri value='svc:/system/filesystem/local'/>
91+
    </dependency>
92+
    <method_context/>
93+
    <exec_method name='start' type='method' exec='ln -nsf /opt/custom/.inputrc /root/.inputrc' timeout_seconds='60'/>
94+
    <exec_method name='stop' type='method' exec=':kill' timeout_seconds='60'/>
95+
    <property_group name='startd' type='framework'>
96+
      <propval name='duration' type='astring' value='transient'/>
97+
      <propval name='ignore_error' type='astring' value='core,signal'/>
98+
    </property_group>
99+
    <property_group name='application' type='application'/>
100+
    <stability value='Evolving'/>
101+
    <template>
102+
      <common_name>
103+
        <loctext xml:lang='C'>Link root .inputrc to /opt/custom/.inputrc</loctext>
104+
      </common_name>
105+
    </template>
106+
  </service>
107+
</service_bundle>

0 commit comments

Comments
 (0)