Skip to content

Commit

Permalink
Add Ubuntu 24.04 FB packages (#131)
Browse files Browse the repository at this point in the history
* Add Ubuntu 24.04 FB package
* Centos 8 ssm connect dnf issue fix
  • Loading branch information
Sivakumar3695 authored Jun 10, 2024
1 parent 3b1101f commit 0841ec8
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 4 deletions.
2 changes: 1 addition & 1 deletion ansible/build-fb-suse/requirements.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
collections:
- name: community.aws
- name: community.general
- name: git+https://github.com/luckslovez/caos-ansible-roles.git#/caos.ansible_roles/
- name: git+https://github.com/Sivakumar3695/caos-ansible-roles#/caos.ansible_roles/
type: git
roles:
- name: andrewrothstein.gh
Expand Down
2 changes: 1 addition & 1 deletion ansible/provision-and-execute-tests/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ collections:
version: 2.11.0
- name: chocolatey.chocolatey
version: 1.5.1
- name: git+https://github.com/luckslovez/caos-ansible-roles.git#/caos.ansible_roles/
- name: git+https://github.com/Sivakumar3695/caos-ansible-roles#/caos.ansible_roles/
type: git

roles:
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
#!/bin/bash

%{if os_distro == "centos"}
%{if os_version == 8}
sudo sed -i 's/mirrorlist/#mirrorlist/g' /etc/yum.repos.d/CentOS-*
sudo sed -i 's|#baseurl=http://mirror.centos.org|baseurl=http://vault.centos.org|g' /etc/yum.repos.d/CentOS-*
sudo dnf distro-sync
%{endif}
sudo %{if os_version == 7}yum%{else}dnf%{endif} install -y https://s3.amazonaws.com/ec2-downloads-windows/SSMAgent/latest/linux_%{if arch == "x86_64"}amd64%{else}arm64%{endif}/amazon-ssm-agent.rpm
%{endif}

Expand Down
1 change: 0 additions & 1 deletion versions/amazonlinux_2023.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
osDistro: amazonlinux
osVersion: 2023
fbVersion: 2.2.2
packages:
- arch: x86_64
ami: ami-01103fb68b3569475
Expand Down
2 changes: 1 addition & 1 deletion versions/common.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fbVersion: 3.0.4
fbVersion: 3.0.6

# This file, together with each distro file are processed and merged incrementally to
# build all the information required to download and test each package. Each package ends
Expand Down
7 changes: 7 additions & 0 deletions versions/ubuntu_24_noble.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
osDistro: ubuntu
osVersion: noble
packages:
- arch: amd64
ami: ami-09040d770ffe2224f
- arch: arm64
ami: ami-001f73ecbd4409f82

0 comments on commit 0841ec8

Please sign in to comment.