parent
7dd46a6dd2
commit
866a9e18a0
@ -1 +1,4 @@
|
||||
*.sw[op]
|
||||
/t/*.sh
|
||||
/t/*.out
|
||||
/t/*.err
|
||||
|
@ -0,0 +1,11 @@
|
||||
#! /bin/bash
|
||||
readonly nginx_path="${PREFIX}/sbin/nginx"
|
||||
readonly so_path="${PREFIX}/modules/ngx_http_fancyindex_module.so"
|
||||
|
||||
[[ -x ${nginx_path} ]] \
|
||||
|| fail "executable binary not found at '%s'\n" "${nginx_path}"
|
||||
|
||||
if ${DYNAMIC} ; then
|
||||
[[ -r ${so_path} ]] \
|
||||
|| fail "module not found at '%s'\n" "${so_path}"
|
||||
fi
|
Loading…
Reference in new issue