configs addition for chroot population

This commit is contained in:
phanes
2023-02-20 22:24:08 -05:00
parent 4668e617e6
commit 37550c04c7
14 changed files with 303 additions and 7 deletions

View File

@@ -1,7 +1,7 @@
{
"units": [
{
"name": "welcome",
"name": "welcome 2",
"target": "components/stage2/welcome.bash",
"is_shell_command": true,
"shell_definition": "bash",
@@ -359,6 +359,24 @@
"group": "root",
"supply_environment": true,
"environment": "environments/stage2.env.bash"
},
{
"name": "populate initial users and groups",
"target": "components/stage2/populate_ug.bash",
"is_shell_command": true,
"shell_definition": "bash",
"force_pty": true,
"set_working_directory": false,
"working_directory": "",
"rectify": false,
"rectifier": "",
"active": true,
"required": true,
"set_user_context": true,
"user": "root",
"group": "root",
"supply_environment": true,
"environment": "environments/stage2.env.bash"
}
]
}

View File

@@ -0,0 +1,22 @@
{
"units": [
{
"name": "welcome 3",
"target": "components/stage3/welcome.bash",
"is_shell_command": true,
"shell_definition": "bash",
"force_pty": true,
"set_working_directory": false,
"working_directory": "",
"rectify": false,
"rectifier": "",
"active": true,
"required": true,
"set_user_context": true,
"user": "root",
"group": "root",
"supply_environment": true,
"environment": "environments/stage3.env.bash"
}
]
}