6 .Nd Interfaces with launchd
9 .Op Ar subcommand Op Ar arguments ...
14 to load, unload daemons/agents and generally control
17 supports taking subcommands on the command line, interactively or even redirected from standard input.
18 These commands can be stored in
19 .Nm $HOME/.launchd.conf
22 to be read at the time
26 .Bl -tag -width -indent
27 .It Xo Ar load Op Fl wF
28 .Op Fl S Ar sessiontype
32 Load the specified configuration files or directories of configuration files.
33 Jobs that are not on-demand will be started as soon as possible.
34 All specified jobs will be loaded before any of them are allowed to start.
35 .Bl -tag -width -indent
37 Remove the disabled key and write the configuration files back out to disk.
39 Force the loading of the plist. Ignore the Disabled key.
40 .It Fl S Ar sessiontype
41 Some jobs only make sense in certain contexts. This flag instructs
43 to look for jobs in a different location when using the -D flag, and allows
45 to restrict which jobs are loaded into which session types. Currently known
46 session types include: Aqua, X11 and tty.
49 .Xr plist 5 files ending in *.plist in the domain given. Valid domains include
50 "system," "local," "network" and "all." When providing a session type, an additional
51 domain is available for use called "user." For example, without a session type given,
52 "-D system" would load from property list files from /System/Library/LaunchDaemons.
53 With a session type passed, it would load from /System/Library/LaunchAgents.
55 .It Xo Ar unload Op Fl w
58 Unload the specified configuration files or directories of configuration files.
59 This will also stop the job if it is running.
60 .Bl -tag -width -indent
62 Add the disabled key and write the configuration files back out to disk.
64 .It Xo Ar submit Fl l Ar label
65 .Op Fl p Ar executable
71 A simple way of submitting a program to run without a configuration file. This mechanism also tells launchd to keep the program alive in the event of failure.
72 .Bl -tag -width -indent
74 What unique label to assign this job to launchd.
76 What program to really execute, regardless of what follows the -- in the submit sub-command.
78 Where to send the stdout of the program.
80 Where to send the stderr of the program.
82 .It Ar remove Ar job_label
83 Remove the jobs from launchd by label.
84 .It Ar start Ar job_label
85 Start the specified jobs by label. The expected use of this subcommand is for
86 debugging and testing so that one can manually kick-start an on-demand server.
87 .It Ar stop Ar job_label
88 Stop the specified jobs by label. If a job is on-demand, launchd may immediately
89 restart the job if launchd finds any criteria that is satisfied.
90 Non-demand based jobs will always be restarted. Use of this subcommand is discouraged.
91 Jobs should ideally idle timeout by themselves.
93 List all of the jobs loaded into
95 .It Ar setenv Ar key Ar value
96 Set an environmental variable inside of
98 .It Ar unsetenv Ar key
99 Unset an environmental variable inside of
102 Get an environmental variable inside of
105 Export all of the environmental variables of
107 for use in a shell eval statement.
108 .It Ar getrusage self | children
109 Get the resource utilization statistics for
114 .Op Ar level loglevel
115 .Op Ar only | mask loglevels...
119 log level mask. The available log levels are: debug, info, notice, warning, error, critical, alert and emergency.
121 .Op Ar cpu | filesize | data | stack | core | rss | memlock | maxproc | maxfiles
122 .Op Ar both Op Ar soft | hard
124 With no arguments, this command prints all the resource limits of
128 When a given resource is specified, it prints the limits for that resource.
129 With a third argument, it sets both the hard and soft limits to that value.
130 With four arguments, the third and forth argument represent the soft and hard limits respectively.
134 Set the standard out file descriptor to the given path.
137 Set the standard error file descriptor to the given path.
142 to prepare for shutdown by removing all jobs.
146 to reread /etc/ttys. This option may go away in a future release.
147 .It Ar umask Op Ar newmask
148 Get or optionally set the
152 .It Ar bslist Op Ar PID
153 This prints out Mach bootstrap services and their respective states. While the
154 namespace appears flat, it is in fact hierarchical, thus allowing for certain
155 services to be only available to a subset of processes. The three states a
156 service can be in are active ("A"), in-active ("I") and on-demand ("D").
157 .It Ar bsexec Ar PID command Op Ar args
158 This executes the given command in the same Mach bootstrap namespace hierachy
161 Print out a quick usage statement.
163 .Sh ENVIRONMENTAL VARIABLES
164 .Bl -tag -width -indent
165 .It Pa LAUNCHD_SOCKET
166 This variable informs launchctl how to find the correct launchd to talk to. If it is missing, launchctl will use a built-in default.
169 .Bl -tag -width "/System/Library/LaunchDaemons" -compact
170 .It Pa ~/Library/LaunchAgents
171 Per-user agents provided by the user.
172 .It Pa /Library/LaunchAgents
173 Per-user agents provided by the administrator.
174 .It Pa /Library/LaunchDaemons
175 System wide daemons provided by the administrator.
176 .It Pa /System/Library/LaunchAgents
177 Mac OS X Per-user agents.
178 .It Pa /System/Library/LaunchDaemons
179 Mac OS X System wide daemons.
182 .Xr launchd.plist 5 ,