[Ubuntu] Set user-related environmental variables and PATH via post deployment script (#3030)

* Move home directory vars to post-deploy scripts

* Remove "export" word

* Move home directory vars to post-deploy scripts

* Remove "export" word

* add variables via post-deployment file

* remove quotes around PATH

* remove quotes

* Replace $HOME in /etc/environment in post-deployment script

* rename variable

* get rid of extra variable
This commit is contained in:
Mikhail Timofeev
2021-03-26 18:33:51 +03:00
committed by GitHub
parent a769b06872
commit dd506183e2
6 changed files with 11 additions and 10 deletions

View File

@@ -0,0 +1,6 @@
#!/bin/bash
# Replace $HOME with the default user's home directory for environmental variables related to the default user home directory
homeDir=$(cut -d: -f6 /etc/passwd | tail -1)
sed -i "s|\$HOME|$homeDir|g" /etc/environment