This file is indexed.

/usr/share/dpdk/scripts/load-devel-config.sh is in dpdk-dev 2.2.0-0ubuntu7.

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
#! /bin/echo must be loaded with .

# Load DPDK devel config and allow override
# from system file
test ! -r /etc/dpdk/devel.config ||
        . /etc/dpdk/devel.config
# from user file
test ! -r ~/.config/dpdk/devel.config ||
        . ~/.config/dpdk/devel.config
# from local file
test ! -r $(dirname $(readlink -m $0))/../.develconfig ||
        . $(dirname $(readlink -m $0))/../.develconfig

# The config files must export variables in the shell style