-
Notifications
You must be signed in to change notification settings - Fork 381
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #653 from ZenithTecnologia/current
docker: arm: T6474: Initial support for dynamic arch toml loading
- Loading branch information
Showing
4 changed files
with
50 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,6 @@ | ||
additional_repositories = [ | ||
"deb [arch=armhf] https://repo.saltproject.io/py3/debian/11/armhf/3005 bullseye main" | ||
] | ||
|
||
# Packages included in armhf images by default | ||
packages = ["grub-efi-arm"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
system { | ||
host-name vyos | ||
login { | ||
user vyos { | ||
authentication { | ||
encrypted-password "*" | ||
plaintext-password "" | ||
} | ||
level admin | ||
} | ||
} | ||
syslog { | ||
global { | ||
facility all { | ||
level info | ||
} | ||
facility protocols { | ||
level debug | ||
} | ||
} | ||
} | ||
ntp { | ||
server "time1.vyos.net" | ||
server "time2.vyos.net" | ||
server "time3.vyos.net" | ||
} | ||
console { | ||
device ttyS0 { | ||
speed 115200 | ||
} | ||
} | ||
config-management { | ||
commit-revisions 100 | ||
} | ||
} | ||
|
||
interfaces { | ||
loopback lo { | ||
} | ||
} |