#!/bin/sh

set -e
if [ -f /etc/chromium/default ]; then
    if ! [ -f /etc/default/chromium ]; then
        cp /etc/chromium/default /etc/default/chromium
    fi
fi


