Skip to content
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

(maint) Remove mk_repo command because it is no longer used. #1231

Merged
merged 1 commit into from
Nov 29, 2023
Merged
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 CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ This changelog adheres to [Keep a CHANGELOG](http://keepachangelog.com/).
## [Unreleased]
### Added
- (PA-5878) Update puppetlabs/packaging platform hash to include macOS 14 (Intel)
### Removed
- (maint) Remove mk_repo command because it is no longer used.

## [0.112.0]
### Added
Expand Down
8 changes: 4 additions & 4 deletions tasks/ship.rake
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace :pl do

desc "Update '#{Pkg::Config.repo_name}' yum repository on '#{Pkg::Config.yum_staging_server}'"
task update_yum_repo: 'pl:fetch' do
command = Pkg::Config.yum_repo_command || 'rake -f /opt/repository/Rakefile mk_repo'
command = Pkg::Config.yum_repo_command
$stdout.puts "Really run remote repo update on '#{Pkg::Config.yum_staging_server}'? [y,n]"
next unless Pkg::Util.ask_yes_or_no

Expand All @@ -25,7 +25,7 @@ namespace :pl do

desc "Update all final yum repositories on '#{Pkg::Config.yum_staging_server}'"
task update_all_final_yum_repos: 'pl:fetch' do
command = Pkg::Config.yum_repo_command || 'rake -f /opt/repository/Rakefile mk_repo'
command = Pkg::Config.yum_repo_command
$stdout.puts "Really run remote repo update on '#{Pkg::Config.yum_staging_server}'? [y,n]"
next unless Pkg::Util.ask_yes_or_no

Expand All @@ -42,7 +42,7 @@ namespace :pl do

desc "Update '#{Pkg::Config.nonfinal_repo_name}' nightly yum repository on '#{Pkg::Config.yum_staging_server}'"
task update_nightlies_yum_repo: 'pl:fetch' do
command = Pkg::Config.yum_repo_command || 'rake -f /opt/repository-nightlies/Rakefile mk_repo'
command = Pkg::Config.yum_repo_command
$stdout.puts "Really run remote repo update on '#{Pkg::Config.yum_staging_server}'? [y,n]"
next unless Pkg::Util.ask_yes_or_no

Expand All @@ -59,7 +59,7 @@ namespace :pl do

desc "Update all nightly yum repositories on '#{Pkg::Config.yum_staging_server}'"
task update_all_nightlies_yum_repos: 'pl:fetch' do
command = Pkg::Config.yum_repo_command || 'rake -f /opt/repository-nightlies/Rakefile mk_repo'
command = Pkg::Config.yum_repo_command
$stdout.puts "Really run remote repo update on '#{Pkg::Config.yum_staging_server}'? [y,n]"
next unless Pkg::Util.ask_yes_or_no

Expand Down