This file is indexed.

/usr/share/puppet/modules.available/saz-memcached/templates/memcached_windows.erb is in puppet-module-saz-memcached 2.8.1-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
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<%-
result = []
if @verbosity
  result << '-' + @verbosity.to_s
end
if @lock_memory
  result << '-k'
end
if @listen_ip
  result << '-l ' + @listen_ip
end
if @tcp_port
  result << '-p ' + @tcp_port.to_s
end
if @udp_port
  result << '-U ' + @udp_port.to_s
end
if @item_size
  result << '-I ' + @item_size.to_s
end
result << '-t ' + @processorcount
if @max_connections 
  result << '-c ' + @max_connections
end
if @logfile
  result << '>> ' + @logfile + ' 2>&1'
end -%>
c:\memcached\memcached.exe -d runservice <%= result.join(' ') %>