-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add experimental support for the launchd startup
git-svn-id: https://svn.code.sf.net/p/smartmontools/code/trunk/smartmontools@4216 4ea69e1a-61f1-4043-bf83-b5c94c648137
- Loading branch information
samm2
committed
Jan 25, 2016
1 parent
81f122d
commit 1b7df8e
Showing
7 changed files
with
34 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
$Id$ | ||
|
||
2016-01-25 Alex Samorukov <[email protected]> | ||
|
||
os_darwin: add launchctl script for the smartd and remove depricated one. | ||
"On current systems there is only one recommend way: launchd" | ||
|
||
2016-01-24 Alex Samorukov <[email protected]> | ||
|
||
os_freebsd.cpp: fix possible reallocf with 0 bytes arg (ticket #640) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?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>KeepAlive</key> | ||
<dict> | ||
<key>SuccessfulExit</key> | ||
<false/> | ||
</dict> | ||
<key>Label</key> | ||
<string>com.smartmontools.smartd</string> | ||
<key>ProgramArguments</key> | ||
<array> | ||
<string>/usr/local/sbin/smartd</string> | ||
<string>-n</string> | ||
</array> | ||
<key>RunAtLoad</key> | ||
<true/> | ||
</dict> | ||
</plist> |