Handle case of EUID or EGID not set

pull/7/head
Patrick Double 10 years ago
parent e000e5bd94
commit f07f9d553f

@ -1,7 +1,7 @@
#!/bin/bash
if [ "$(id -u abc)" != "$PUID" ]; then usermod -o -u "$PUID" abc ; fi
if [ "$(id -g abc)" != "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi
if [ -n "$PUID" -a "$(id -u abc)" != "$PUID" ]; then usermod -o -u "$PUID" abc ; fi
if [ -n "$PGID" -a "$(id -g abc)" != "$PGID" ]; then groupmod -o -g "$PGID" abc ; fi
echo "
-----------------------------------

Loading…
Cancel
Save