#!/bin/sh
# Create frankenphp group if it doesn't exist
if ! getent group frankenphp > /dev/null 2>&1; then
    addgroup -S frankenphp
fi