Continuez sur ce sujet, je me suis retrouvé avec:
<?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.saltstack.minion</string>
<key>EnvironmentVariables</key>
<dict>
<key>HOME</key>
<string>/Users/quanta</string>
</dict>
<key>ProgramArguments</key>
<array>
<string>/usr/local/bin/salt-minion</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
mais je me demande bien: est-il possible de définir la variable HOME de manière dynamique? (au lieu de code fixe - /Users/quanta
)
J'ai essayé d'ajouter une EnableGlobbing
clé au plist:
<key>EnableGlobbing</key>
<true/>
a ensuite changé la valeur de la variable HOME en tilde:
<key>EnvironmentVariables</key>
<dict>
<key>HOME</key>
<string>~</string>
</dict>
et redémarrez le salt-minion
. Voici ce que je reçois:
MacBook-Pro.local:
- /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/pathname.rb:853:in `expand_path': non-absolute home (ArgumentError)
- from /System/Library/Frameworks/Ruby.framework/Versions/1.8/usr/lib/ruby/1.8/pathname.rb:853:in `expand_path'
- from /usr/local/Library/Homebrew/global.rb:25:in `cache'
- from /usr/local/Library/Homebrew/global.rb:44
- from /usr/local/Library/brew.rb:17:in `require'
- from /usr/local/Library/brew.rb:17
Il semble que le développement n’est activé que pour les chaînes des touches Program
ou ProgramArguments
.