mirror of
https://github.com/actions/runner-images-sangeeth.git
synced 2025-12-20 06:29:50 +00:00
Merge pull request #544 from miketimofeev/v-mitim/add_config_directory
Add XDG_CONFIG_HOME directory to Ubuntu images
This commit is contained in:
7
images/linux/scripts/installers/configure-environment.sh
Normal file
7
images/linux/scripts/installers/configure-environment.sh
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
#Set ImageVersion and ImageOS env variables
|
||||||
|
echo ImageVersion=$IMAGE_VERSION | tee -a /etc/environment
|
||||||
|
echo ImageOS=$IMAGE_OS | tee -a /etc/environment
|
||||||
|
|
||||||
|
# This directory is supposed to be created in $HOME and owned by user(https://github.com/actions/virtual-environments/issues/491)
|
||||||
|
mkdir -p /etc/skel/.config/configstore
|
||||||
|
echo 'export XDG_CONFIG_HOME=$HOME/.config' | tee -a /etc/skel/.bashrc
|
||||||
@@ -123,9 +123,12 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"inline": [
|
"scripts": [
|
||||||
"echo ImageVersion={{user `image_version`}} | tee -a /etc/environment",
|
"{{template_dir}}/scripts/installers/configure-environment.sh"
|
||||||
"echo ImageOS={{user `image_os`}} | tee -a /etc/environment"
|
],
|
||||||
|
"environment_vars": [
|
||||||
|
"IMAGE_VERSION={{user `image_version`}}",
|
||||||
|
"IMAGE_OS={{user `image_os`}}"
|
||||||
],
|
],
|
||||||
"execute_command": "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
"execute_command": "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -126,9 +126,12 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"type": "shell",
|
"type": "shell",
|
||||||
"inline": [
|
"scripts": [
|
||||||
"echo ImageVersion={{user `image_version`}} | tee -a /etc/environment",
|
"{{template_dir}}/scripts/installers/configure-environment.sh"
|
||||||
"echo ImageOS={{user `image_os`}} | tee -a /etc/environment"
|
],
|
||||||
|
"environment_vars": [
|
||||||
|
"IMAGE_VERSION={{user `image_version`}}",
|
||||||
|
"IMAGE_OS={{user `image_os`}}"
|
||||||
],
|
],
|
||||||
"execute_command": "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
"execute_command": "sudo sh -c '{{ .Vars }} {{ .Path }}'"
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user