Community maintained cdist types.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/sh |
|
|
|
# Move to top-level cdist-contrib directory. |
|
cd $(dirname $0)/.. |
|
|
|
# Check that each type has a man page. |
|
status=0 |
|
for t in type/*; do |
|
if [ ! -f "$t/man.rst" ]; then |
|
echo "No manpage for type $t!" |
|
status=1 |
|
fi |
|
done |
|
|
|
exit $status
|
|
|