Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add branding for live CD #2065

Merged
merged 1 commit into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ stages:
Welcome to \S !
IP address \4
Login with user: root, password: elemental
Start the installer with "elemental install <device>" to install it in the local system
permissions: 0644
owner: 0
group: 0
Expand All @@ -48,7 +47,7 @@ stages:
group: 0
- name: "Branding recovery"
if: '[ -f "/run/elemental/recovery_mode" ]'
hostname: "elemental"
hostname: "recovery"
files:
- path: /etc/issue
content: |
Expand All @@ -65,8 +64,22 @@ stages:
permissions: 0644
owner: 0
group: 0
boot:
- name: "Recovery"
if: '[ -f "/run/elemental/recovery_mode" ]'
hostname: "recovery"
- name: "Branding live CD"
if: '[ -f "/run/elemental/live_mode" ]'
hostname: "installer"
files:
- path: /etc/issue
content: |
.-----.
| .-. |
| |.| |
| `-' |
`-----'

Welcome to \S Live CD!
IP address \4
Login with user: root, password: elemental
Install the system with "elemental install".
permissions: 0644
owner: 0
group: 0
Loading