Commit 1ca754ee9302c7f4af56a9f8c80c28f26a628be0
1 parent
6acbf20a
Exists in
add_super_archives_plugin
Fix migrate execute order
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
cookbooks/colab/recipes/default.rb
... | ... | @@ -182,8 +182,6 @@ template '/etc/colab/plugins.d/sentry_client.py' do |
182 | 182 | notifies :restart, 'service[colab]' |
183 | 183 | end |
184 | 184 | |
185 | -execute 'colab-admin migrate' | |
186 | - | |
187 | 185 | # Adding widgets for colab |
188 | 186 | cookbook_file '/etc/colab/widgets.d/dashboard.py' do |
189 | 187 | owner 'root' |
... | ... | @@ -209,6 +207,8 @@ cookbook_file '/etc/colab/widgets.d/gitlab_profile.py' do |
209 | 207 | notifies :restart, 'service[colab]' |
210 | 208 | end |
211 | 209 | |
210 | +execute 'colab-admin migrate' | |
211 | + | |
212 | 212 | # Static files |
213 | 213 | directory '/var/lib/colab/assets/spb/' do |
214 | 214 | owner 'root' | ... | ... |