#
# Makefile for the Squid Object Cache server
#
-# $Id: Makefile.in,v 1.199 2001/02/10 14:39:33 hno Exp $
+# $Id: Makefile.in,v 1.200 2001/04/03 20:22:10 adrian Exp $
#
# Uncomment and customize the following to suit your needs:
#
OPT_PINGER_EXE = pinger$(exec_suffix)
PINGER_EXE = @OPT_PINGER_EXE@
CACHEMGR_EXE = cachemgr$(cgi_suffix)
+DISKD_EXE = diskd$(exec_suffix)
DEFAULT_PREFIX = $(prefix)
DEFAULT_CONFIG_FILE = $(sysconfdir)/squid.conf
DEFAULT_SWAP_DIR = $(localstatedir)/cache
DEFAULT_PINGER = $(libexecdir)/$(PINGER_EXE)
DEFAULT_UNLINKD = $(libexecdir)/$(UNLINKD_EXE)
+DEFAULT_DISKD = $(libexecdir)/$(DISKD_EXE)
DEFAULT_ICON_DIR = $(sysconfdir)/icons
DEFAULT_ERROR_DIR = $(sysconfdir)/errors
DEFAULT_MIB_PATH = $(sysconfdir)/mib.txt
s%@DEFAULT_DNSSERVER@%$(DEFAULT_DNSSERVER)%g;\
s%@DEFAULT_UNLINKD@%$(DEFAULT_UNLINKD)%g;\
s%@DEFAULT_PINGER@%$(DEFAULT_PINGER)%g;\
+ s%@DEFAULT_DISKD@%$(DEFAULT_DISKD)%g;\
s%@DEFAULT_CACHE_LOG@%$(DEFAULT_CACHE_LOG)%g;\
s%@DEFAULT_ACCESS_LOG@%$(DEFAULT_ACCESS_LOG)%g;\
s%@DEFAULT_STORE_LOG@%$(DEFAULT_STORE_LOG)%g;\
#
-# $Id: cf.data.pre,v 1.215 2001/02/20 22:49:23 hno Exp $
+# $Id: cf.data.pre,v 1.216 2001/04/03 20:22:10 adrian Exp $
#
#
# SQUID Web Proxy Cache http://www.squid-cache.org/
containing any dot character) host definitions.
DOC_END
+NAME: diskd_program
+TYPE: string
+DEFAULT: @DEFAULT_DISKD@
+LOC: Config.Program.diskd
+DOC_START
+ Specify the location of the diskd executable.
+ Note that this is only useful if you have compiled in
+ diskd as one of the store io modules.
+DOC_END
+
NAME: unlinkd_program
IFDEF: USE_UNLINKD
TYPE: string
/*
- * $Id: store_dir_diskd.cc,v 1.47 2001/03/14 22:28:40 wessels Exp $
+ * $Id: store_dir_diskd.cc,v 1.48 2001/04/03 20:22:11 adrian Exp $
*
* DEBUG: section 47 Store Directory Routines
* AUTHOR: Duane Wessels
#else
x = ipcCreate(IPC_FIFO,
#endif
- SQUID_PREFIX "/libexec/squid/diskd",
+ Config.Program.diskd,
args,
"diskd",
&rfd,
/*
- * $Id: structs.h,v 1.384 2001/02/20 22:49:24 hno Exp $
+ * $Id: structs.h,v 1.385 2001/04/03 20:22:10 adrian Exp $
*
*
* SQUID Web Proxy Cache http://www.squid-cache.org/
#if USE_UNLINKD
char *unlinkd;
#endif
+ char *diskd;
} Program;
#if USE_DNSSERVERS
int dnsChildren;