This file is indexed.

/usr/share/common-lisp/source/daemon/daemon.asd is in cl-daemon 20170403-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
(asdf:load-system :trivial-features :verbose nil)

(asdf:defsystem :daemon
  :version "0.0.4"
  :author "Masatoshi SANO"
  :description "Process daemonization for some common lisp."
  :licence "MIT"
  :components ((:file "package")
               #-windows(:file "daemon"))
  :serial t
  :depends-on (#+sbcl :sb-posix))