default_install &&

local SSL_CONFDIR="$INSTALL_ROOT/etc/ssl" &&
install -vm 755 -d "$SSL_CONFDIR" &&
for i in {,apps/{,openssl/}}openssl.cnf; do
  if [ -e "$i" ]; then
    install_config_file "$i" "$SSL_CONFDIR"
    break
  fi
done
