Support fo Ubuntu2404 #26

Merged
kazu634 merged 29 commits from ubuntu2404 into main 2024-11-03 02:03:02 +00:00
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 2063cf2f6c - Show all commits

View File

@ -7,7 +7,7 @@ execute "wget -O- #{SRC} | gpg --dearmor -o #{DEST}" do
end end
# Retrieve the Ubuntu code: # Retrieve the Ubuntu code:
DIST = run_command('lsb_release -cs').stdout.chomp DIST = run_command('lsb_release -cs 2>/dev/null').stdout.chomp
# Deploy the `apt` sources: # Deploy the `apt` sources:
template '/etc/apt/sources.list.d/hashicorp.list' do template '/etc/apt/sources.list.d/hashicorp.list' do

View File

@ -7,7 +7,7 @@ execute "wget -O- #{SRC} | gpg --dearmor -o #{DEST}" do
end end
# Retrieve the Ubuntu code: # Retrieve the Ubuntu code:
DIST = run_command('lsb_release -cs').stdout.chomp DIST = run_command('lsb_release -cs 2>/dev/null').stdout.chomp
# Deploy the `apt` sources: # Deploy the `apt` sources:
template '/etc/apt/sources.list.d/hashicorp.list' do template '/etc/apt/sources.list.d/hashicorp.list' do

View File

@ -7,7 +7,7 @@ execute "wget -O- #{SRC} | gpg --dearmor -o #{DEST}" do
end end
# Retrieve the Ubuntu code: # Retrieve the Ubuntu code:
DIST = run_command('lsb_release -cs').stdout.chomp DIST = run_command('lsb_release -cs 2>/dev/null').stdout.chomp
# Deploy the `apt` sources: # Deploy the `apt` sources:
template '/etc/apt/sources.list.d/hashicorp.list' do template '/etc/apt/sources.list.d/hashicorp.list' do