#!/bin/sh if ! getent group at >/dev/null; then addgroup -S at 2>/dev/null fi if ! getent passwd at >/dev/null; then adduser -S -H -s /bin/false -D -g at at 2>/dev/null fi if [ -z `echo " $(groups at) " | grep ' at '`] ; then addgroup at at 2>/dev/null fi exit 0