mirror of
https://github.com/macintoshplus/php.git
synced 2026-04-24 08:58:02 +02:00
13 lines
166 B
Bash
Executable File
13 lines
166 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ -d "/src" ]
|
|
then
|
|
|
|
USERID=$(stat -c "%u" /src)
|
|
GROUPID=$(stat -c "%g" /src)
|
|
|
|
groupmod -g $GROUPID phpuser
|
|
usermod -u $USERID -g $GROUPID phpuser
|
|
|
|
fi
|