mirror of
https://github.com/sol1/rustguac.git
synced 2026-09-10 01:26:06 +00:00
67101e27ce
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
13 lines
265 B
Bash
Executable File
13 lines
265 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
# Create rustguac system user if it doesn't exist.
|
|
# Chromium's crashpad requires a real home directory.
|
|
if ! getent passwd rustguac >/dev/null 2>&1; then
|
|
adduser --system --group --home /home/rustguac --quiet rustguac
|
|
fi
|
|
|
|
#DEBHELPER#
|
|
|
|
exit 0
|