Debian package: move home dir to match other components #69
Labels
No labels
P0
P1
P2
P3
good first issue
Infrastructure
blocked
bug
config
discussion
documentation
duplicate
enhancement
go
help wanted
internal
invalid
kludge
observability
perfomance
question
refactoring
wontfix
No project
No assignees
3 participants
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: TrueCloudLab/frostfs-http-gw#69
Loading…
Reference in a new issue
No description provided.
Delete branch "DmitryZabolotsky/frostfs-http-gw:misc/move-home-dir"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
All other components' homedirs are located in /var/lib/frostfs
Signed-off-by: Dmitriy Zabolotskiy d.zabolotskiy@yadro.com
777fa55ac5
toe15965a0eb
WIP: [#XX] Debian package: move home dir to match other componentsto Debian package: move home dir to match other components@ -30,3 +30,3 @@
fi
USERDIR=$(getent passwd "frostfs-$USERNAME" | cut -d: -f6)
if ! dpkg-statoverride --list frostfs-"$USERDIR" >/dev/null; then
if ! dpkg-statoverride --list "$USERDIR" >/dev/null; then
In other components we have
frostfs-"$USERDIR"
if ! dpkg-statoverride --list frostfs-"$USERDIR" >/dev/null; then
It's the correct variant.
Other packages should be changed to match.