This file is indexed.

/usr/share/lua5.1-policy-dev/app.c.conf.in is in lua5.1-policy-dev 33.

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
// $Id: app.c.conf.in 902 2008-03-22 13:32:17Z gareuselesinge $
#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@@");
}