diff --git a/docs/man/XrdCnsd.8 b/docs/man/XrdCnsd.8 deleted file mode 100644 index dd96a7ff66f..00000000000 --- a/docs/man/XrdCnsd.8 +++ /dev/null @@ -1,34 +0,0 @@ -.TH XrdCnsd 8 "__VERSION__" -.SH NAME -XrdCnsd - Cluster Name Space daemon -.SH SYNOPSIS -.nf - -\fBXrdCnsd\fR [\fIoptions\fR] - -.fi -.br -.ad l -.SH DESCRIPTION -The \fBXrdCnsd\fR daemon creates and maintains a file inventory for a data -server. This is known as a server-side inventory (\fBssi\fR) service. -The daemon can also be run as a one-time command to repair inventory problems. -Complete HTML documentation can be found at - -.ce -http://xrootd.org/doc/prod/cms_config.htm -.SH NOTES -The \fBcns_ssi\fR utility is used to display a server's inventory of files. -Documentation for all components associated with \fBXrdCnsd\fR can be found at -http://xrootd.org/docs.html -.SH DIAGNOSTICS -Configuration errors yield an error message and a non-zero exit status. -The daemon is normally started as piped command via an xrootd daemon -configuration directive. -.SH LICENSE -License terms can be displayed by typing "\fBxrootd -H\fR". -.SH SUPPORT LEVEL -The \fBXrdCnsd\fR daemon is supported by the xrootd collaboration. -Contact information can be found at -.ce -http://xrootd.org/contact.html diff --git a/docs/man/cns_ssi.8 b/docs/man/cns_ssi.8 deleted file mode 100644 index e10ab42caba..00000000000 --- a/docs/man/cns_ssi.8 +++ /dev/null @@ -1,30 +0,0 @@ -.TH cns_ssi 8 "__VERSION__" -.SH NAME -cns_ssi - administer a server side inventory -.SH SYNOPSIS -.nf - -\fBcns_ssi\fR \fIcommand\fR [\fIoptions\fR] \fIdirpath\fR - -.fi -.br -.ad l -.SH DESCRIPTION -The \fBcns_ssi\fR utility displays and maintains server side inventory files -created by the \fBXrdCnsd\fR daemon. -Complete HTML documentation can be found at - -.ce -http://xrootd.org/doc/prod/cms_config.htm -.SH NOTES -Documentation for all components associated with \fBcns_ssi\fR can be found at -http://xrootd.org/docs.html -.SH DIAGNOSTICS -Errors yield an error message and a non-zero exit status. -.SH LICENSE -License terms can be displayed by typing "\fBxrootd -H\fR". -.SH SUPPORT LEVEL -The \fBcns_ssi\fR command is supported by the xrootd collaboration. -Contact information can be found at -.ce -http://xrootd.org/contact.html diff --git a/src/XrdCns.cmake b/src/XrdCns.cmake deleted file mode 100644 index 5cecc9950b5..00000000000 --- a/src/XrdCns.cmake +++ /dev/null @@ -1,67 +0,0 @@ - -include( XRootDCommon ) - -#------------------------------------------------------------------------------- -# The XrdCns library -#------------------------------------------------------------------------------- -add_library( - XrdCnsLib - STATIC - XrdCns/XrdCnsLog.cc XrdCns/XrdCnsLog.hh - XrdCns/XrdCnsLogRec.cc XrdCns/XrdCnsLogRec.hh - - XrdCns/XrdCnsXref.cc XrdCns/XrdCnsXref.hh ) - -#------------------------------------------------------------------------------- -# XrdCns -#------------------------------------------------------------------------------- -add_executable( - XrdCnsd - XrdCns/XrdCnsConfig.cc XrdCns/XrdCnsConfig.hh - XrdCns/XrdCnsDaemon.cc XrdCns/XrdCnsDaemon.hh - XrdCns/XrdCnsInventory.cc XrdCns/XrdCnsInventory.hh - XrdCns/XrdCnsLogClient.cc XrdCns/XrdCnsLogClient.hh - XrdCns/XrdCnsLogFile.cc XrdCns/XrdCnsLogFile.hh - XrdCns/XrdCnsLogServer.cc XrdCns/XrdCnsLogServer.hh - XrdCns/XrdCnsMain.cc ) - - -target_link_libraries( - XrdCnsd - XrdCnsLib - XrdClient - XrdServer - XrdUtils - pthread - ${EXTRA_LIBS} ) - -#------------------------------------------------------------------------------- -# cns_ssi -#------------------------------------------------------------------------------- -add_executable( - cns_ssi - XrdCns/XrdCnsSsi.cc XrdCns/XrdCnsSsi.hh - XrdCns/XrdCnsSsiCfg.cc XrdCns/XrdCnsSsiCfg.hh - XrdCns/XrdCnsSsiMain.cc - XrdCns/XrdCnsSsiSay.hh ) - -target_link_libraries( - cns_ssi - XrdUtils - XrdCnsLib - pthread - ${EXTRA_LIBS} ) - -#------------------------------------------------------------------------------- -# Install -#------------------------------------------------------------------------------- -install( - TARGETS XrdCnsd cns_ssi - RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR} ) - -install( - FILES - ${PROJECT_SOURCE_DIR}/docs/man/XrdCnsd.8 - ${PROJECT_SOURCE_DIR}/docs/man/cns_ssi.8 - DESTINATION ${CMAKE_INSTALL_MANDIR}/man8 ) -