Skip to content

Commit

Permalink
Fix: Change systemd_conf_dir to good_job_systemd_conf_dir
Browse files Browse the repository at this point in the history
As the `good_job_systemd_conf_dir` capistrano variable
is the one having a default in `lib/capistrano/good_job.rb:10`
  • Loading branch information
mtomov committed Mar 20, 2023
1 parent 7a31cd5 commit f018034
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## [Unreleased]

## [0.1.1] - 2023-03-20
* Fix: Change `systemd_conf_dir` to `good_job_systemd_conf_dir`

## [0.1.0] - 2023-02-18

- Initial release
2 changes: 1 addition & 1 deletion lib/capistrano/good_job/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module CapistranoGoodJob
VERSION = "0.1.0"
VERSION = "0.1.1"
end
2 changes: 1 addition & 1 deletion lib/capistrano/tasks/good_job.rake
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ namespace :good_job do
desc "Install good_job systemd service"
task :install do
on roles(fetch(:good_job_role)) do |role|
execute :mkdir, "-p", fetch(:systemd_conf_dir)
execute :mkdir, "-p", fetch(:good_job_systemd_conf_dir)

service_file = File.expand_path("../../templates/good_job.service.erb", __FILE__)
erb = File.read(service_file)
Expand Down

0 comments on commit f018034

Please sign in to comment.