On 5.9.2018 21:20, Mick wrote: > Hi All, > > I just noticed a psd error at boot time: > > /usr/bin/profile-sync-daemon: line 325: ${#DIRArr[@]##*/}: bad substitution > > Any idea what's brought this about? > Hi, my bet is that your /bin/sh != /bin/bash and /usr/bin/profile-sync-daemon starts with #!/bin/sh. The other way around /usr/bin/profile-sync-daemon contains bashishms. You can try (as a test) to change #!/bin/sh for #!/bin/bash... S