#!/bin/sh

if [ -e /etc/group ] && ! grep -q '^shadow:' /etc/group; then
        addgroup -S -g 42 shadow
fi

