Package: profile-sync-daemon
Version: 6.34-1
Followup-For: Bug #932345
User: m...@linux.it
Usertags: usrmerge

Hi,

This happens in is usr-merged system.

in /usr/bin/profile-sync-daemon

```
# needed for debian 8.x
[[ -h /sbin ]] || PATH=$PATH:/sbin
```

The fisrt test is failed, since /sbin is a symlink to /usr/sbin.
Thus the PATH doesn't contain sbin.

I think just adding following line could fix the problem.

```
[[ -h /usr/sbin ]] || PATH=$PATH:/usr/sbin
```

Thanks

Reply via email to