File tree Expand file tree Collapse file tree 3 files changed +14
-12
lines changed Expand file tree Collapse file tree 3 files changed +14
-12
lines changed Original file line number Diff line number Diff line change 9
9
- geerlingguy.passenger
10
10
11
11
tasks :
12
+ - name : Allow Git invocations in repositories owned by other users.
13
+ git_config :
14
+ name : safe.directory
15
+ scope : global
16
+ value : ' *'
17
+
12
18
- name : Ensure demo application is at correct release.
13
19
git :
14
20
repo : https://github.com/geerlingguy/demo-rails-app.git
18
24
force : true
19
25
register : app_updated
20
26
notify : restart nginx
21
- become : true
22
- become_user : " {{ app_user }}"
23
27
24
28
- name : Ensure secrets file is present.
25
29
template :
Original file line number Diff line number Diff line change 19
19
- libreadline-dev
20
20
- tzdata
21
21
state : present
22
-
23
- - name : Ensure app directory exists and is writeable.
24
- file :
25
- path : " {{ app_directory }}"
26
- state : directory
27
- owner : " {{ app_user }}"
28
- group : " {{ app_user }}"
29
- mode : 0755
Original file line number Diff line number Diff line change @@ -18,8 +18,14 @@ passenger_ruby: /usr/local/bin/ruby
18
18
19
19
# Variables for Ruby installation.
20
20
ruby_install_from_source : true
21
- ruby_download_url : https://cache.ruby-lang.org/pub/ruby/2.7/ruby-2.7.6.tar.gz
22
- ruby_version : 2.7.6
21
+ ruby_download_url : https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.0.tar.gz
22
+ ruby_version : 2.6.0
23
+ ruby_install_bundler : false
24
+ ruby_install_gems :
25
+ - name : bundler
26
+ version : 2.1.4
27
+ user_install : false
28
+ ruby_install_gems_user : root
23
29
24
30
# Variables for Node.js installation.
25
31
nodejs_install_npm_user : root
You can’t perform that action at this time.
0 commit comments