Skip to content

Commit f28a535

Browse files
committed
Don't fail chmod if there are unchomodable files in ~/jboss
1 parent a0410de commit f28a535

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

jboss/container/eap/final-setup/configure.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ chown jboss:root $JBOSS_HOME/standalone/deployments
1919

2020
# Necessary to permit running with a randomised UID
2121
for dir in ${JBOSS_HOME} $DEPLOYMENTS_DIR; do
22-
chown -R jboss:root $dir
23-
chmod -R g+rwX $dir
22+
chown -Rf jboss:root $dir
23+
chmod -Rf g+rwX $dir
2424
done
2525

0 commit comments

Comments
 (0)