Skip to content

Commit 7d9db74

Browse files
committed
LaunchDaemon
1 parent 1cb057f commit 7d9db74

2 files changed

Lines changed: 28 additions & 0 deletions

File tree

LaunchDaemon/README.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# LaunchDaemon
2+
3+
To automatically run cl0ver on every boot:
4+
5+
1. Download [`net.siguza.cl0ver.plist`](https://raw.githubusercontent.com/Siguza/cl0ver/master/LaunchDaemon/net.siguza.cl0ver.plist).
6+
2. Either make sure cl0ver exists in `/usr/local/bin`, or edit the plist and put your own path there.
7+
**IF THE PATH TO CL0VER IS NOT VALID, YOUR DEVICE MIGHT NO LONGER BOOT!**
8+
3. Put the plist file in `/Library/LaunchDaemons/` on your device.
9+
4. Make sure the file is owned by root and not writable by anyone else. If in doubt, run these commands (as root):
10+
11+
chown root:wheel /Library/LaunchDaemons/net.siguza.cl0ver.plist;
12+
chmod 644 /Library/LaunchDaemons/net.siguza.cl0ver.plist;
13+
14+
As always, use at your own risk.
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3+
<plist version="1.0">
4+
<dict>
5+
<key>Label</key>
6+
<string>net.siguza.cl0ver</string>
7+
<key>ProgramArguments</key>
8+
<array>
9+
<string>/usr/local/bin/cl0ver</string>
10+
</array>
11+
<key>RunAtLoad</key>
12+
<true/>
13+
</dict>
14+
</plist>

0 commit comments

Comments
 (0)