This file is indexed.

/usr/share/ltsp/plugins/ltsp-build-client/SUSE_LINUX/001-set-arch is in ltsp-server 5.4.2-6+deb7u1.

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
#Support 32bit only for now, remaining archs handled by kiwi directly. Will make available after testing.
case "$MODE" in
    commandline)
        add_option "arch" "`eval_gettext "set the target architecture"`" "advanced" "true"
        ;;
    configure)
        if [ -n "$option_arch_value" ]; then
            ARCH_OPT="$option_arch_value"
        else
            ARCH_OPT=$(uname -m | sed -e s/i.86/i386/ -e s/ppc.*/powerpc/)
        fi

        # Validate the proposed architecture value.
        case "$ARCH_OPT" in
            i386)
            case "$(uname -m)" in
                x86_64|ia64|i386|i486|i586|i686)
                ARCH=i386
                ;;
                *)
                printf "`eval_gettext "ERROR: --arch %s called on unsupported arch: %s"`", i386 $(uname -m)
                exit 1
                ;;
            esac
            ;;
            *)
            printf "`eval_gettext "ERROR: unsupported architecture. Check your --arch argument: %s"`", $ARCH_OPT
            printf "`eval_gettext "       supported values are: %s"`", "i386"
            exit 1
            ;;
        esac      
        ;;
esac