mirror of
https://aur.archlinux.org/plex-media-server-plexpass.git
synced 2025-11-20 06:28:29 +00:00
9 lines
234 B
Plaintext
9 lines
234 B
Plaintext
post_upgrade() {
|
|
# The plex user's home directory needs to change too.
|
|
if [[ "$( getent passwd plex | cut -d: -f6 )" != "/usr/lib/plexmediaserver" ]]; then
|
|
usermod -d /usr/lib/plexmediaserver plex
|
|
fi
|
|
}
|
|
|
|
# vim: ts=2 sw=2 et:
|