Skip to content

Commit

Permalink
prevent setup-spot from copying /home/spot to pup_rw
Browse files Browse the repository at this point in the history
  • Loading branch information
dimkr committed Jan 20, 2023
1 parent 47f7489 commit ce06203
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion woof-code/rootfs-skeleton/usr/sbin/setup-spot
Expand Up @@ -129,6 +129,6 @@ do

done

[ $CHOWN -eq 1 ] && [ -n "`find ${PREFIXDIR}${SPOT_HOME} ! -user spot -or ! -group spot | head -n 1`" ] && chown -R spot:spot ${PREFIXDIR}${SPOT_HOME}
[ $CHOWN -eq 1 ] && find ${PREFIXDIR}${SPOT_HOME} \( ! -user spot -or ! -group spot \) -exec chown -h spot:spot {} \;

###END###

0 comments on commit ce06203

Please sign in to comment.