1
0
mirror of https://github.com/rancher/os.git synced 2025-09-07 01:31:06 +00:00

Release v1.9.0

- Bump up kernel to 4.14.211
- Bump up default Docker version to 19.03.14
- Include v1.9.0 tag
- Fix sudo ros config syslinux command
This commit is contained in:
Olli Janatuinen
2020-12-10 19:00:32 +02:00
parent 2c8a40b547
commit 50dcc4b7ba
2 changed files with 4 additions and 4 deletions

View File

@@ -175,8 +175,8 @@ func editSyslinux(c *cli.Context) error {
cmd := exec.Command("system-docker", "run", "--rm", "-it",
"-v", "/:/host",
"-w", "/host",
"--entrypoint=vi",
"rancher/os-console:"+config.Version,
"--entrypoint=nano",
"burmilla/os-console:"+config.Version,
"boot/global.cfg")
cmd.Stdout, cmd.Stderr, cmd.Stdin = os.Stdout, os.Stderr, os.Stdin
return cmd.Run()