|
|
@ -49,7 +49,7 @@ The following global explorers are available: |
|
|
|
eof |
|
|
|
eof |
|
|
|
( |
|
|
|
( |
|
|
|
cd ../../cdist/conf/explorer |
|
|
|
cd ../../cdist/conf/explorer |
|
|
|
for explorer in *; do |
|
|
|
for explorer in $(ls * | LC_ALL=C sort); do |
|
|
|
echo "- $explorer" |
|
|
|
echo "- $explorer" |
|
|
|
done |
|
|
|
done |
|
|
|
) |
|
|
|
) |
|
|
@ -157,7 +157,7 @@ The following types are available: |
|
|
|
|
|
|
|
|
|
|
|
eof |
|
|
|
eof |
|
|
|
|
|
|
|
|
|
|
|
for type in man7/cdist-type__*.rst; do |
|
|
|
for type in $(ls man7/cdist-type__*.rst | LC_ALL=C sort); do |
|
|
|
no_dir="${type#man7/}"; |
|
|
|
no_dir="${type#man7/}"; |
|
|
|
no_type="${no_dir#cdist-type}"; |
|
|
|
no_type="${no_dir#cdist-type}"; |
|
|
|
name="${no_type%.rst}"; |
|
|
|
name="${no_type%.rst}"; |
|
|
|