#!/bin/bash

set -e

[ -x /usr/sbin/install-docs ] || exit 0

if command -v install-docs >/dev/null 2>&1; then
	install-docs -r sysadmin-guide
fi
