-
-
Notifications
You must be signed in to change notification settings - Fork 303
Feature/ubuntu server 20.04 #61
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
Open
rubenst2013
wants to merge
6
commits into
geerlingguy:master
Choose a base branch
from
rubenst2013:feature/ubuntu-server-20.04
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
8ee2129
Switch to release version of Ubuntu Server 20.04
rubenst2013 2cd389c
Update boot_command and boot_wait
rubenst2013 5a12172
Add new autoinstall descriptions
rubenst2013 4b535fe
Implement workaround for packer ssh
rubenst2013 dc61d2f
Implement @nickcharlton code review suggestions
rubenst2013 46a1da3
Implement suggested change by @nickcharlton
rubenst2013 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
Empty file.
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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,44 @@ | ||
#cloud-config | ||
autoinstall: | ||
version: 1 | ||
apt: | ||
geoip: true | ||
preserve_sources_list: true | ||
# primary: | ||
# - arches: [amd64, i386] | ||
# uri: http://de.archive.ubuntu.com/ubuntu | ||
# - arches: [default] | ||
# uri: http://ports.ubuntu.com/ubuntu-ports | ||
packages: | ||
- ubuntu-standard | ||
- ubuntu-server | ||
- openssh-server | ||
- cryptsetup | ||
- build-essential | ||
- libssl-dev | ||
- libreadline-dev | ||
- zlib1g-dev | ||
- linux-source | ||
- dkms | ||
- nfs-common | ||
- software-properties-common | ||
identity: {hostname: vagrant, password: $6$H6dENrige2G2YwQQ$ip2nRmBQDm5OXtQ.xpxOoq.f32XOuNkHm6KgMiPH7LFcYhbWnEiVS8bGD3UGRDRstnL4nn/0Av8rtaXfPjGMz1, | ||
realname: vagrant, username: vagrant} | ||
rubenst2013 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
keyboard: {layout: us, variant: ''} | ||
locale: en_US | ||
network: | ||
network: | ||
ethernets: | ||
enp0s3: {dhcp4: true, dhcp-identifier: mac} | ||
version: 2 | ||
ssh: | ||
allow-pw: true | ||
authorized-keys: [] | ||
install-server: false | ||
rubenst2013 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
storage: | ||
layout: | ||
name: lvm | ||
late-commands: | ||
- sed -i 's/^#*\(send dhcp-client-identifier\).*$/\1 = hardware;/' /target/etc/dhcp/dhclient.conf | ||
- 'sed -i "s/dhcp4: true/&\n dhcp-identifier: mac/" /target/etc/netplan/00-installer-config.yaml' | ||
- 'echo "Port 2222" > /target/etc/ssh/sshd_config.d/packer-init.conf' | ||
rubenst2013 marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.