Skip to content
This repository has been archived by the owner on Dec 31, 2022. It is now read-only.

Commit

Permalink
fix: Ensure shared/system dir is created (#197)
Browse files Browse the repository at this point in the history
This directory is symlinked by default here:

https://github.com/ajgon/opsworks_ruby/blob/6e2328941996d98316657d7a52c98de6982068a5/attributes/default.rb#L21

But the directory is never created and we're left with a broken symlink.
  • Loading branch information
omnibs authored and ajgon committed Nov 23, 2018
1 parent c2f32c4 commit 7f8cb2e
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions recipes/configure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
create_deploy_dir(application, File.join('shared', 'log'))
create_deploy_dir(application, File.join('shared', 'scripts'))
create_deploy_dir(application, File.join('shared', 'sockets'))
create_deploy_dir(application, File.join('shared', 'system'))
create_deploy_dir(application, File.join('shared', 'vendor/bundle'))
create_dir("/run/lock/#{application['shortname']}")

Expand Down

0 comments on commit 7f8cb2e

Please sign in to comment.