LaunchAgent脚本无法写入外部驱动器

时间:2019-11-03 03:08:50

标签: python bash macos launchd macos-catalina

macOS Catalina

我有一个python脚本,应该将文件写入外部驱动器。如果我手动运行脚本,则此方法有效。但是,如果该脚本是从LaunchAgent bash脚本开始的,则没有这样做的权限。

例如,简化的python脚本:

with open('/Volumes/nas_1/test/somefile.txt', 'a') as the_file:
                            the_file.write('Hello\n')

LaunchAgent启动的Bash脚本位于/Applications

#!/bin/bash

#Start test script only if it is not running
if [ "$(ps -ef | grep -v grep | grep python_test.py | wc -l)" -le 0 ]
then

echo "Python Test Starting"
/Users/admin-user/.venvs/test/bin/python /Users/admin-user/projects/test/scripts/python_test.py

else
 echo "Python Test Already Running"
fi
位于~/Library/LaunchAgents

plist:

<?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>EnvironmentVariables</key>
    <dict>
      <key>PATH</key>
      <string>/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin:</string>
    </dict>
    <key>Label</key>
    <string>com.test.agent</string>
    <key>Program</key>
    <string>/Applications/runTest.sh</string>
    <key>RunAtLoad</key>
    <true/>
    <key>KeepAlive</key>
    <false/>
    <key>LaunchOnlyOnce</key>
    <true/>
    <key>StandardOutPath</key>
    <string>/tmp/runTest.stdout</string>
    <key>StandardErrorPath</key>
    <string>/tmp/runTest.stderr</string>
  </dict>
</plist>

错误:

PermissionError: [Errno 1] Operation not permitted: '/Volumes/nas_1/test/somefile.txt'

我在调试时已授予/Volumes/nas_1/test 777权限,但没有帮助。我应该将bash和/或python脚本移到其他位置吗?

1 个答案:

答案 0 :(得分:1)

我遇到了类似的问题。我的通过bsync将文件复制到外部驱动器的bash脚本在升级到Catalina后无法运行。

以下是我使其再次起作用的步骤:

  • /bin/bash / System Preferences / Security & Privacy中添加Full Disk Access
  • /bin/bash(是/usr/bin/env bash)将我的shebang替换为bash脚本
  • 从我的plist中删除StandardErrorPathStandardOutPath项(写入日志文件被拒绝,因为它是作为另一个进程产生的)

此后,它又开始工作了,也许还有更好的解决方案。