forked from Fediversity/Fediversity
use a mutable HOME in TF for nixos-anywhere to make a .ssh
dir in - will this not backfire?
This commit is contained in:
parent
b26fbec7f8
commit
4f4bea2a01
1 changed files with 4 additions and 2 deletions
|
@ -132,8 +132,10 @@ class DeploymentStatus(ConfigurationForm):
|
|||
deployment_params = dummy_user | json.loads(submission)
|
||||
env = {
|
||||
"PATH": settings.bin_path,
|
||||
# used in nixos-anywhere for ssh-copy-id
|
||||
"HOME": expanduser("~"),
|
||||
# used in nixos-anywhere for ssh-copy-id to make `.ssh` in for ssh-copy-id.
|
||||
# run thru subprocess, HOME points to the read-only `/var/empty`.
|
||||
# in local dev, it will just reject the `/tmp` and make it in HOME after all.
|
||||
"HOME": "/tmp",
|
||||
"XDG_CACHE_HOME": "/tmp",
|
||||
} | {
|
||||
# pass in form info to our deployment
|
||||
|
|
Loading…
Add table
Reference in a new issue