Trying to add () to a local file using Fabric.
I would like to use
append('/etc/ssh_config', ['\n\nHost', '\n\tIdentityFile', '\n\User'])
But unfortunately, he only tries to delete files
Trying to wrap append in local (), for example:
local(append('/etc/ssh_config', ['\n\nHost', '\n\tIdentityFile', '\n\User']))
... fails.
source share