#!/bin/sh
if [ 'amd64' = $(/usr/bin/dpkg --print-architecture) ] ; then
    /bin/echo i386
else
    /usr/bin/dpkg --print-architecture
fi

