This file is indexed.

/usr/share/doc/minetest-server/README.Debian is in minetest-server 0.4.13+repack-1build1.

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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
minetest-server for Debian
==========================

Since version 0.4.10+repack-3 Debian supports running multiple Minetest servers.
An unprivileged system-wide user, Debian-minetest, controls the server.

    * The home directory of this user is /var/games/minetest-server.
    * All log files are written to /var/log/minetest.
    * The default server configuration is located at
      /etc/minetest/minetest.conf.

systemd (default init system)
=============================

Debian's Minetest server supports template units. You can start multiple
servers by specifying the name of your configuration files on the command-line.

    # This command will start the server with the default configuration,
    # /etc/minetest/minetest.conf

    systemctl start minetest-server@minetest.service

    # For running a second PvP server, you can create another configuration
    # file /etc/minetest/pvp.conf and then start the server with

    systemctl start minetest-server@pvp.service

The new log file will then be written to /var/log/minetest/pvp.log.

SysV
====

You can start the server with default minetest.conf configuration by using the
service command.

    service minetest-server start

and stop it with

    service minetest-server stop

To disable the init script use the facilities provided by your init system. For
instance, under sysvinit, use

    update-rc.d minetest-server disable

or under systemd, use

    systemctl disable minetest-server@minetest.service


 -- Markus Koschany <apo@gambaru.de>  Thu, 20 Nov 2014 17:41:39 +0100