Skip to content

Commit

Permalink
Fixes for case-sensitive volumes
Browse files Browse the repository at this point in the history
Installation crashed with following stdout:
```
installing
kext installed and loaded
chown: LuluDaemon: No such file or directory
mv: rename LuluDaemon to /Library/Objective-See/LuLu/LuluDaemon: No such file or directory
launch daemon installed and loaded
install complete
```
  • Loading branch information
AykutCevik committed Nov 27, 2017
1 parent 9084b0b commit eb9589c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions configure/configure.sh
Expand Up @@ -50,10 +50,10 @@ then
echo "kext installed and loaded"

#install & load launch daemon
chown -R root:wheel LuluDaemon
chown -R root:wheel LuLuDaemon
chown -R root:wheel com.objective-see.lulu.plist

mv LuluDaemon /Library/Objective-See/LuLu/
mv LuLuDaemon /Library/Objective-See/LuLu/
mv com.objective-see.lulu.plist /Library/LaunchDaemons/
launchctl load /Library/LaunchDaemons/com.objective-see.lulu.plist

Expand Down

0 comments on commit eb9589c

Please sign in to comment.