This file is indexed.

/usr/share/tcos/scripts/tcos-bottom/56tcosxmlrpc is in initramfs-tools-tcos 0.89.86.

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

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/bin/sh
#
if [ "$1" = "prereqs" ]; then
  exit 0
fi

quiet=n
. /scripts/functions
. /conf/tcos.conf
. /conf/tcos-run-functions


# if break=xmlrpc STOP here
maybe_break xmlrpc

# DOCUMENTME noxmlrpc | disable tcosxmlrpc daemon
noxmlrpc=$(read_cmdline_var "noxmlrpc" "0")
if [ ${noxmlrpc} = 1 ]; then
  _log "START-XMLR-PC xmlrpc disabled from cmdline"
  exit 0
fi


# start daemon
log_begin_msg "Starting tcosxmlrpc server"
  _log "START-XMLRCP starting startxmlrpc...."
  startxmlrpc &
log_end_msg $?



exit 0