Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 2 additions & 0 deletions app/Enums/OperatingSystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ enum OperatingSystem: string implements VitoEnum
case UBUNTU20 = 'ubuntu_20';
case UBUNTU22 = 'ubuntu_22';
case UBUNTU24 = 'ubuntu_24';
case UBUNTU26 = 'ubuntu_26';

public function getColor(): string
{
Expand All @@ -28,6 +29,7 @@ public function getVersion(): string
self::UBUNTU20 => '20.04',
self::UBUNTU22 => '22.04',
self::UBUNTU24 => '24.04',
self::UBUNTU26 => '26.04',
};
}
}
1 change: 1 addition & 0 deletions config/core.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
OperatingSystem::UBUNTU20->value,
OperatingSystem::UBUNTU22->value,
OperatingSystem::UBUNTU24->value,
OperatingSystem::UBUNTU26->value,
],

/*
Expand Down
2 changes: 2 additions & 0 deletions config/serverproviders.php
Original file line number Diff line number Diff line change
Expand Up @@ -488,6 +488,7 @@
'ubuntu_20' => 'linode/ubuntu20.04',
'ubuntu_22' => 'linode/ubuntu22.04',
'ubuntu_24' => 'linode/ubuntu24.04',
'ubuntu_26' => 'linode/ubuntu26.04',
],
],
'digitalocean' => [
Expand Down Expand Up @@ -945,6 +946,7 @@
'ubuntu_20' => 'ubuntu-20.04',
'ubuntu_22' => 'ubuntu-22.04',
'ubuntu_24' => 'ubuntu-24.04',
'ubuntu_26' => 'ubuntu-26.04',
],
],
];
Loading