Skip to content

[packaging] Create pyroscope unix group #2485

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Oct 11, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions tools/packaging/postinstall.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,15 @@ fi
cleanInstall() {
printf "\033[32m Post Install of a clean install\033[0m\n"

if ! getent group pyroscope >/dev/null 2>&1; then
groupadd --system pyroscope
fi
# Create the user
if ! id pyroscope > /dev/null 2>&1 ; then
adduser --system --home /var/lib/pyroscope --shell /bin/false "pyroscope"
adduser --system --home /var/lib/pyroscope --gid $(getent group pyroscope | awk -F ":" '{ print $3 }') --shell /bin/false "pyroscope"
fi
mkdir -p /var/lib/pyroscope
chown pyroscope /var/lib/pyroscope
chown pyroscope:pyroscope /var/lib/pyroscope

# rhel/centos7 cannot use ExecStartPre=+ to specify the pre start should be run as root
# even if you want your service to run as non root.
Expand Down