-
Notifications
You must be signed in to change notification settings - Fork 0
/
com.username1.login.plist
38 lines (32 loc) · 1.03 KB
/
com.username1.login.plist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.username1.login</string>
<!-- Run at launch and never repeat .... -->
<key>KeepAlive</key>
<false/>
<key>RunAtLoad</key>
<true/>
<key>LaunchOnlyOnce</key>
<true/>
<!-- Run as root, hopefully (useless for agents ...) -->
<!-- <key>UserName</key> -->
<!-- <string>sergpolly</string> -->
<!-- Debugging will help probably ... -->
<key>StandardOutPath</key>
<string>/Users/Shared/slog.log</string>
<key>StandardErrorPath</key>
<string>/Users/Shared/slog.log</string>
<key>Debug</key>
<true/>
<!-- Script to launch and arguments ... -->
<key>ProgramArguments</key>
<array>
<string>/Users/Shared/agent_serg.sh</string>
<!-- <string>fst_argument</string> -->
<!-- <string>snd_argument</string> -->
</array>
</dict>
</plist>