Skip to content

Commit

Permalink
Merge branch 'release/20210718.1.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
hswong3i committed Jul 18, 2021
2 parents a60505e + 166a5fb commit 16de18a
Show file tree
Hide file tree
Showing 22 changed files with 93 additions and 57 deletions.
30 changes: 21 additions & 9 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@

### Major Changes

- Upgrade minimal Ansible community package support to 4.1.0
## 20210718.1.1 - 2021-07-18

### Major Changes

- Upgrade minimal Ansible community package support to 4.2.0

## 20210602.1.1 - 2021-06-02

Expand All @@ -19,23 +23,31 @@

### Major Changes

- Bugfix [ansible-lint `namespace`](https://github.com/ansible-community/ansible-lint/pull/1451)
- Bugfix [ansible-lint `no-handler`](https://github.com/ansible-community/ansible-lint/pull/1402)
- Bugfix [ansible-lint `unnamed-task`](https://github.com/ansible-community/ansible-lint/pull/1413)
- Bugfix [ansible-lint
`namespace`](https://github.com/ansible-community/ansible-lint/pull/1451)
- Bugfix [ansible-lint
`no-handler`](https://github.com/ansible-community/ansible-lint/pull/1402)
- Bugfix [ansible-lint
`unnamed-task`](https://github.com/ansible-community/ansible-lint/pull/1413)

## 20210116.1.0 - 2021-01-16

### Major Changes

- Support [QEMU Guest Agent](https://wiki.qemu.org/Features/GuestAgent)
- Support [VirtualBox Guest Additions](https://www.virtualbox.org/manual/ch04.html)
- Support [QEMU Guest
Agent](https://wiki.qemu.org/Features/GuestAgent)
- Support [VirtualBox Guest
Additions](https://www.virtualbox.org/manual/ch04.html)

## 20210114.1.0 - 2021-01-14

- Packaging with [Packer](https://www.packer.io/)
- Minimal [Vagrant base box implementation](https://www.vagrantup.com/docs/boxes/base)
- Support [Vagrant synced folder with rsync](https://www.vagrantup.com/docs/synced-folders/rsync)
- Support [Vagrant provisioner with Ansible](https://www.vagrantup.com/docs/provisioning/ansible)
- Minimal [Vagrant base box
implementation](https://www.vagrantup.com/docs/boxes/base)
- Support [Vagrant synced folder with
rsync](https://www.vagrantup.com/docs/synced-folders/rsync)
- Support [Vagrant provisioner with
Ansible](https://www.vagrantup.com/docs/provisioning/ansible)
- Standardize disk partition with GPT
- Standardize file system mount with UUID
- Standardize network interface with `eth0`
54 changes: 39 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,20 @@
# Vagrant Box Packaging for Debian

[![GitLab pipeline status](https://img.shields.io/gitlab/pipeline/alvistack/vagrant-debian/master)](https://gitlab.com/alvistack/vagrant-debian/-/pipelines)
[![GitHub release](https://img.shields.io/github/release/alvistack/vagrant-debian.svg)](https://github.com/alvistack/vagrant-debian/releases)
[![GitHub license](https://img.shields.io/github/license/alvistack/vagrant-debian.svg)](https://github.com/alvistack/vagrant-debian/blob/master/LICENSE)
[![Vagrant Box download](https://img.shields.io/badge/dynamic/json?label=alvistack%2Fdebian-10&query=%24.boxes%5B%3A1%5D.downloads&url=https%3A%2F%2Fapp.vagrantup.com%2Fapi%2Fv1%2Fsearch%3Fq%3Dalvistack%2Fdebian-10)](https://app.vagrantup.com/alvistack/boxes/debian-10)

Debian is an operating system which is composed primarily of free and open-source software, most of which is under the GNU General Public License, and developed by a group of individuals known as the Debian project. Debian is one of the most popular Linux distributions for personal computers and network servers, and has been used as a base for several other Linux distributions.
[![GitLab pipeline
status](https://img.shields.io/gitlab/pipeline/alvistack/vagrant-debian/master)](https://gitlab.com/alvistack/vagrant-debian/-/pipelines)
[![GitHub
release](https://img.shields.io/github/release/alvistack/vagrant-debian.svg)](https://github.com/alvistack/vagrant-debian/releases)
[![GitHub
license](https://img.shields.io/github/license/alvistack/vagrant-debian.svg)](https://github.com/alvistack/vagrant-debian/blob/master/LICENSE)
[![Vagrant Box
download](https://img.shields.io/badge/dynamic/json?label=alvistack%2Fdebian-10&query=%24.boxes%5B%3A1%5D.downloads&url=https%3A%2F%2Fapp.vagrantup.com%2Fapi%2Fv1%2Fsearch%3Fq%3Dalvistack%2Fdebian-10)](https://app.vagrantup.com/alvistack/boxes/debian-10)

Debian is an operating system which is composed primarily of free and
open-source software, most of which is under the GNU General Public
License, and developed by a group of individuals known as the Debian
project. Debian is one of the most popular Linux distributions for
personal computers and network servers, and has been used as a base for
several other Linux distributions.

Learn more about Debian: <https://debian.org/>

Expand All @@ -21,18 +30,26 @@ Learn more about Debian: <https://debian.org/>
## Overview

- Packaging with [Packer](https://www.packer.io/)
- Minimal [Vagrant base box implementation](https://www.vagrantup.com/docs/boxes/base)
- Support [QEMU Guest Agent](https://wiki.qemu.org/Features/GuestAgent)
- Support [VirtualBox Guest Additions](https://www.virtualbox.org/manual/ch04.html)
- Support [Vagrant synced folder with rsync](https://www.vagrantup.com/docs/synced-folders/rsync)
- Support [Vagrant provisioner with Ansible](https://www.vagrantup.com/docs/provisioning/ansible)
- Minimal [Vagrant base box
implementation](https://www.vagrantup.com/docs/boxes/base)
- Support [QEMU Guest
Agent](https://wiki.qemu.org/Features/GuestAgent)
- Support [VirtualBox Guest
Additions](https://www.virtualbox.org/manual/ch04.html)
- Support [Vagrant synced folder with
rsync](https://www.vagrantup.com/docs/synced-folders/rsync)
- Support [Vagrant provisioner with
Ansible](https://www.vagrantup.com/docs/provisioning/ansible)
- Standardize disk partition with GPT
- Standardize file system mount with UUID
- Standardize network interface with `eth0`

### Quick Start

Once you have [Vagrant](https://www.vagrantup.com/docs/installation) and [VirtaulBox](https://www.virtualbox.org/) installed, run the following commands under your [project directory](https://learn.hashicorp.com/tutorials/vagrant/getting-started-project-setup?in=vagrant/getting-started):
Once you have [Vagrant](https://www.vagrantup.com/docs/installation) and
[VirtaulBox](https://www.virtualbox.org/) installed, run the following
commands under your [project
directory](https://learn.hashicorp.com/tutorials/vagrant/getting-started-project-setup?in=vagrant/getting-started):

# Initialize Vagrant
vagrant init alvistack/debian-10
Expand All @@ -50,16 +67,23 @@ Once you have [Vagrant](https://www.vagrantup.com/docs/installation) and [Virtau

### `YYYYMMDD.Y.Z`

Release tags could be find from [GitHub Release](https://github.com/alvistack/vagrant-debian/releases) of this repository. Thus using these tags will ensure you are running the most up to date stable version of this image.
Release tags could be find from [GitHub
Release](https://github.com/alvistack/vagrant-debian/releases) of this
repository. Thus using these tags will ensure you are running the most
up to date stable version of this image.

### `YYYYMMDD.0.0`

Version tags ended with `.0.0` are rolling release rebuild by [GitLab pipeline](https://gitlab.com/alvistack/vagrant-debian/-/pipelines) in weekly basis. Thus using these tags will ensure you are running the latest packages provided by the base image project.
Version tags ended with `.0.0` are rolling release rebuild by [GitLab
pipeline](https://gitlab.com/alvistack/vagrant-debian/-/pipelines) in
weekly basis. Thus using these tags will ensure you are running the
latest packages provided by the base image project.

## License

- Code released under [Apache License 2.0](LICENSE)
- Docs released under [CC BY 4.0](http://creativecommons.org/licenses/by/4.0/)
- Docs released under [CC
BY 4.0](http://creativecommons.org/licenses/by/4.0/)

## Author Information

Expand Down
2 changes: 1 addition & 1 deletion packer/libvirt-10/packer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"debconf/priority=critical <wait5>",
"console-setup/ask_detect=false <wait5>",
"debconf/frontend=noninteractive <wait5>",
"net.ifnames=0 biosdevname=0 <wait5>",
"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0 <wait5>",
"preseed/url=http://{{.HTTPIP}}:{{.HTTPPort}}/preseed.cfg <wait5>",
"---<enter>"
],
Expand Down
6 changes: 3 additions & 3 deletions packer/libvirt-10/preseed.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ d-i base-installer/kernel/override-image string linux-server
d-i keyboard-configuration/xkb-keymap select us
d-i time/zone string Etc/UTC
d-i debian-installer/locale string en_US.UTF-8
d-i debian-installer/add-kernel-opts string net.ifnames=0 biosdevname=0
d-i debian-installer/add-kernel-opts string net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0
d-i finish-install/reboot_in_progress note
d-i grub-installer/bootdev string default

Expand Down Expand Up @@ -106,8 +106,8 @@ d-i preseed/late_command string in-target /bin/bash -c ' \
ssh-keygen -A; \
systemctl enable ssh.service; \
sed -ie "s/^GRUB_DEFAULT=.*/GRUB_DEFAULT=\"0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0\"/g" /etc/default/grub; \
update-grub; \
update-initramfs -c -k all; \
exit 0 \
Expand Down
2 changes: 1 addition & 1 deletion packer/libvirt-11/packer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"debconf/priority=critical <wait5>",
"console-setup/ask_detect=false <wait5>",
"debconf/frontend=noninteractive <wait5>",
"net.ifnames=0 biosdevname=0 <wait5>",
"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0 <wait5>",
"preseed/url=http://{{.HTTPIP}}:{{.HTTPPort}}/preseed.cfg <wait5>",
"---<enter>"
],
Expand Down
6 changes: 3 additions & 3 deletions packer/libvirt-11/preseed.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ d-i base-installer/kernel/override-image string linux-server
d-i keyboard-configuration/xkb-keymap select us
d-i time/zone string Etc/UTC
d-i debian-installer/locale string en_US.UTF-8
d-i debian-installer/add-kernel-opts string net.ifnames=0 biosdevname=0
d-i debian-installer/add-kernel-opts string net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0
d-i finish-install/reboot_in_progress note
d-i grub-installer/bootdev string default

Expand Down Expand Up @@ -106,8 +106,8 @@ d-i preseed/late_command string in-target /bin/bash -c ' \
ssh-keygen -A; \
systemctl enable ssh.service; \
sed -ie "s/^GRUB_DEFAULT=.*/GRUB_DEFAULT=\"0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0\"/g" /etc/default/grub; \
update-grub; \
update-initramfs -c -k all; \
exit 0 \
Expand Down
2 changes: 1 addition & 1 deletion packer/virtualbox-10/packer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"debconf/priority=critical <wait5>",
"console-setup/ask_detect=false <wait5>",
"debconf/frontend=noninteractive <wait5>",
"net.ifnames=0 biosdevname=0 <wait5>",
"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0 <wait5>",
"preseed/url=http://{{.HTTPIP}}:{{.HTTPPort}}/preseed.cfg <wait5>",
"---<enter>"
],
Expand Down
6 changes: 3 additions & 3 deletions packer/virtualbox-10/preseed.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ d-i base-installer/kernel/override-image string linux-server
d-i keyboard-configuration/xkb-keymap select us
d-i time/zone string Etc/UTC
d-i debian-installer/locale string en_US.UTF-8
d-i debian-installer/add-kernel-opts string net.ifnames=0 biosdevname=0
d-i debian-installer/add-kernel-opts string net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0
d-i finish-install/reboot_in_progress note
d-i grub-installer/bootdev string default

Expand Down Expand Up @@ -106,8 +106,8 @@ d-i preseed/late_command string in-target /bin/bash -c ' \
ssh-keygen -A; \
systemctl enable ssh.service; \
sed -ie "s/^GRUB_DEFAULT=.*/GRUB_DEFAULT=\"0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0\"/g" /etc/default/grub; \
update-grub; \
update-initramfs -c -k all; \
exit 0 \
Expand Down
2 changes: 1 addition & 1 deletion packer/virtualbox-11/packer.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"debconf/priority=critical <wait5>",
"console-setup/ask_detect=false <wait5>",
"debconf/frontend=noninteractive <wait5>",
"net.ifnames=0 biosdevname=0 <wait5>",
"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0 <wait5>",
"preseed/url=http://{{.HTTPIP}}:{{.HTTPPort}}/preseed.cfg <wait5>",
"---<enter>"
],
Expand Down
6 changes: 3 additions & 3 deletions packer/virtualbox-11/preseed.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ d-i base-installer/kernel/override-image string linux-server
d-i keyboard-configuration/xkb-keymap select us
d-i time/zone string Etc/UTC
d-i debian-installer/locale string en_US.UTF-8
d-i debian-installer/add-kernel-opts string net.ifnames=0 biosdevname=0
d-i debian-installer/add-kernel-opts string net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0
d-i finish-install/reboot_in_progress note
d-i grub-installer/bootdev string default

Expand Down Expand Up @@ -106,8 +106,8 @@ d-i preseed/late_command string in-target /bin/bash -c ' \
ssh-keygen -A; \
systemctl enable ssh.service; \
sed -ie "s/^GRUB_DEFAULT=.*/GRUB_DEFAULT=\"0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"net.ifnames=0 biosdevname=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX=.*/GRUB_CMDLINE_LINUX=\"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0\"/g" /etc/default/grub; \
sed -ie "s/^GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT=\"net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0\"/g" /etc/default/grub; \
update-grub; \
update-initramfs -c -k all; \
exit 0 \
Expand Down
6 changes: 3 additions & 3 deletions playbooks/prepare.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@
- name: fedora | yum install *.rpm
raw: |
set -eu
yum install -y bzip2 ca-certificates curl gcc gnupg2 gzip iproute procps-ng python3 python3-cryptography python3-devel python3-jmespath python3-libselinux python3-lxml python3-netaddr python3-pip python3-setuptools python3-virtualenv python3-wheel rsync shadow-utils sudo tar unzip util-linux xz yum-utils zip
yum install -y bzip2 ca-certificates curl gcc gnupg2 gzip iproute procps-ng python3 python3-cryptography python3-devel python3-dnf-plugin-versionlock python3-jmespath python3-libselinux python3-lxml python3-netaddr python3-pip python3-setuptools python3-virtualenv python3-wheel rsync shadow-utils sudo tar unzip util-linux xz yum-utils zip
when: ansible_distribution | lower == "fedora"
changed_when: false
failed_when: false
Expand All @@ -111,7 +111,7 @@
raw: |
set -eu
yum install -y http://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm
yum install -y bzip2 ca-certificates curl gcc gnupg2 gzip iproute procps-ng python3 python3-cryptography python3-devel python3-jmespath python3-libselinux python3-lxml python3-netaddr python3-pip python3-setuptools python3-virtualenv python3-wheel rsync shadow-utils sudo tar unzip util-linux xz yum-utils zip
yum install -y bzip2 ca-certificates curl gcc gnupg2 gzip iproute procps-ng python3 python3-cryptography python3-devel python3-dnf-plugin-versionlock python3-jmespath python3-libselinux python3-lxml python3-netaddr python3-pip python3-setuptools python3-virtualenv python3-wheel rsync shadow-utils sudo tar unzip util-linux xz yum-utils zip
when: ansible_os_family | lower == "redhat" and ansible_distribution_major_version | lower == "8"
changed_when: false
failed_when: false
Expand All @@ -121,7 +121,7 @@
set -eu
subscription-manager repos --enable=rhel-7-server-optional-rpms || echo $?
yum install -y http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
yum install -y bzip2 ca-certificates curl gcc gnupg2 gzip iproute procps-ng python3 python3-devel python3-jmespath python3-libselinux python3-lxml python3-pip python3-setuptools python3-virtualenv python3-wheel python36-cryptography python36-netaddr rsync shadow-utils sudo tar unzip util-linux xz yum-utils zip
yum install -y bzip2 ca-certificates curl gcc gnupg2 gzip iproute procps-ng python3 python3-devel python3-jmespath python3-libselinux python3-lxml python3-pip python3-setuptools python3-virtualenv python3-wheel python36-cryptography python36-netaddr rsync shadow-utils sudo tar unzip util-linux xz yum-plugin-versionlock yum-utils zip
when: ansible_os_family | lower == "redhat" and ansible_distribution_major_version | lower == "7"
changed_when: false
failed_when: false
Expand Down
4 changes: 2 additions & 2 deletions playbooks/tasks/debian.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
state: "present"
loop:
- { option: "GRUB_DEFAULT", value: "0" }
- { option: "GRUB_CMDLINE_LINUX", value: "net.ifnames=0 biosdevname=0" }
- { option: "GRUB_CMDLINE_LINUX_DEFAULT", value: "net.ifnames=0 biosdevname=0" }
- { option: "GRUB_CMDLINE_LINUX", value: "net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0" }
- { option: "GRUB_CMDLINE_LINUX_DEFAULT", value: "net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0" }

- name: update-grub
command: update-grub
Expand Down
4 changes: 2 additions & 2 deletions playbooks/tasks/redhat.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
state: "present"
loop:
- { option: "GRUB_DEFAULT", value: "0" }
- { option: "GRUB_CMDLINE_LINUX", value: "net.ifnames=0 biosdevname=0" }
- { option: "GRUB_CMDLINE_LINUX_DEFAULT", value: "net.ifnames=0 biosdevname=0" }
- { option: "GRUB_CMDLINE_LINUX", value: "net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0" }
- { option: "GRUB_CMDLINE_LINUX_DEFAULT", value: "net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0" }

- name: grub2-mkconfig -o /boot/grub2/grub.cfg
command: grub2-mkconfig -o /boot/grub2/grub.cfg
Expand Down
4 changes: 2 additions & 2 deletions playbooks/tasks/suse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
state: "present"
loop:
- { option: "GRUB_DEFAULT", value: "0" }
- { option: "GRUB_CMDLINE_LINUX", value: "net.ifnames=0 biosdevname=0" }
- { option: "GRUB_CMDLINE_LINUX_DEFAULT", value: "net.ifnames=0 biosdevname=0" }
- { option: "GRUB_CMDLINE_LINUX", value: "net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0" }
- { option: "GRUB_CMDLINE_LINUX_DEFAULT", value: "net.ifnames=0 biosdevname=0 systemd.unified_cgroup_hierarchy=0" }

- name: grub2-mkconfig -o /boot/grub2/grub.cfg
command: grub2-mkconfig -o /boot/grub2/grub.cfg
Expand Down
2 changes: 1 addition & 1 deletion roles/ansible
2 changes: 1 addition & 1 deletion roles/cloud_init
2 changes: 1 addition & 1 deletion roles/kernel
2 changes: 1 addition & 1 deletion roles/locales
2 changes: 1 addition & 1 deletion roles/python
2 changes: 1 addition & 1 deletion roles/sshd
2 changes: 1 addition & 1 deletion roles/timezone
Loading

0 comments on commit 16de18a

Please sign in to comment.