Commit
9640afa78a133dd6b35452f036b489fbf07152cd
Exists in
master
and in
39 other branches
1.12.x, add_requests_as_dep, celery_service, change-passwd-signal, check-port, colab-signals, colab-vcard, colab_search, colab_tag, colab_tag_merge, community_association, detach_super_archives, fix-dashboard, fix-message-preview, fix_app_label, fix_cache_count_spb, fix_header, fixed_gitlab_import, go_to_profile_panel, header_footer, layout-fix, mobile_user_scalable, move_out_plugins, paginate-threads, profile_integration, refactor-data-import, remove-gitlab-plugin, removing_namespace, search_block, search_filters, spb-release/3.0, split_screen, stable, startplugin, timestamp_plugins, translation_review, user_regex, validate-passwd, workin_whoosh_temp
Using vagrant keys for colab user (vagrant only)
| @@ -81,4 +81,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
| @@ -81,4 +81,6 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| |
81
| puppet.manifests_path = "puppet/manifests" |
81
| puppet.manifests_path = "puppet/manifests" |
82
| puppet.manifest_file = "init.pp" |
82
| puppet.manifest_file = "init.pp" |
83
| end |
83
| end |
| |
84
| + |
| |
85
| + config.vm.provision :shell, :path => "puppet/colab-key.sh" |
84
| end |
86
| end |
| @@ -0,0 +1,5 @@ |
| @@ -0,0 +1,5 @@ |
| |
1
| +#!/bin/bash |
| |
2
| + |
| |
3
| +mkdir -p ~colab/.ssh/ --mode=700 |
| |
4
| +cp ~vagrant/.ssh/authorized_keys ~colab/.ssh/authorized_keys |
| |
5
| +chown -fR colab:colab ~colab/.ssh/ |