File: launchd.plist

package info (click to toggle)
plaso 20241006-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 673,228 kB
  • sloc: python: 91,831; sh: 557; xml: 97; makefile: 17; sql: 14; vhdl: 11
file content (81 lines) | stat: -rw-r--r-- 1,910 bytes parent folder | download | duplicates (3)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
  <key>Label</key>
  <string>com.foobar.test</string>
  <key>Program</key>
  <string>/Test</string>
  <key>ProgramArguments</key>
  <array>
    <string>--flag</string>
    <string>arg1</string>
  </array>
  <key>StandardInPath</key>
  <string>/dev/null/in</string>
  <key>StandardOutPath</key>
  <string>/dev/null/out</string>
  <key>StandardErrorPath</key>
  <string>/dev/null/error</string>
  <key>WorkingDirectory</key>
  <string>/dev/null</string>
  <key>RunAtLoad</key>
  <true/>
  <key>StartInterval</key>
  <integer>3600</integer>
  <key>StartCalendarInterval</key>
  <array>
    <dict>
      <key>Month</key>
      <integer>1</integer>
      <key>Hour</key>
      <integer>12</integer>
      <key>Minute</key>
      <integer>0</integer>
    </dict>
    <dict>
      <key>Month</key>
      <integer>1</integer>
      <key>Hour</key>
      <integer>13</integer>
      <key>Minute</key>
      <integer>0</integer>
    </dict>
  </array>
  <key>StartOnMount</key>
  <true/>
  <key>WatchPaths</key>
  <array>
    <string>/tmp/dir</string>
    <string>/tmp/exist</string>
  </array>
  <key>QueueDirectories</key>
  <array>
    <string>/tmp/queue</string>
  </array>
  <key>KeepAlive</key>
  <true/>
  <key>UserName</key>
  <string>nobody</string>
  <key>GroupName</key>
  <string>nobody</string>
  <key>InitGroups</key>
  <true/>
  <key>Umask</key>
  <integer>23</integer>
  <key>RootDirectory</key>
  <string>/tmp/chroot</string>
  <key>AbandonProcessGroup</key>
  <true/>
  <key>ExitTimeOut</key>
  <integer>30</integer>
  <key>TimeOut</key>
  <integer>30</integer>
  <key>ThrottleInterval</key>
  <integer>30</integer>
  <key>Nice</key>
  <integer>-5</integer>
  <key>ProcessType</key>
  <string>Interactive</string>
</dict>
</plist>