This file is indexed.

/usr/share/dh-lua/test/5.1/app.c.conf.in is in dh-lua 19.

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
// Copyright: © 2012 Enrico Tassi <gareuselesinge@debian.org>
// License: MIT/X

#include "@@LUA_HEADER@@"

static void app_open(lua_State* L){
  lua_getglobal(L,"package");
  lua_getfield(L,-1,"preload");
  lua_pushcfunction(L,luaopen_@@LUA_MODNAME_CPART_UNDERSCORE@@);
  lua_setfield(L,-2,"@@LUA_MODNAME_CPART@@");
}