aboutsummaryrefslogtreecommitdiff
path: root/sysutils/vagrant/pkg-plist
blob: d5a54bad261acd39012a9f0257a7ee748d450577 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
bin/vagrant
%%GEMS_DIR%%cache/vagrant-%%PORTVERSION%%.gem
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/.hashibot.hcl
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/.vimrc
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/.yardopts
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/CHANGELOG.md
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/Gemfile
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/LICENSE
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/Makefile
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/README.md
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/RELEASE.md
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/Rakefile
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/Vagrantfile
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/bin/vagrant
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/README.md
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/bash/completion.sh
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/emacs/vagrant.el
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/st/Ruby.sublime-settings
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/sudoers/linux-fedora
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/sudoers/linux-suse
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/sudoers/linux-ubuntu
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/sudoers/osx
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/vim/vagrantfile.vim
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/zsh/_vagrant
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/contrib/zsh/generate_zsh_completion.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/keys/README.md
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/keys/vagrant
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/keys/vagrant.pub
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/box_add.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/box_check_outdated.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/box_remove.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/box_update.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/call.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/cleanup_disks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/cloud_init_setup.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/cloud_init_wait.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/config_validate.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/confirm.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/delayed.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/destroy_confirm.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/disk.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/env_set.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/graceful_halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/handle_box.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/handle_box_url.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/handle_forwarded_port_collisions.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/has_provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/is_env_set.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/is_state.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/lock.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/message.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/mixin_provisioners.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/mixin_synced_folders.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/prepare_clone.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/provision.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/provisioner_cleanup.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/set_hostname.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/ssh_exec.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/ssh_run.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/synced_folder_cleanup.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/synced_folders.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/trigger.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/builtin/wait_for_communicator.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/general/package.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/general/package_setup_files.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/general/package_setup_folders.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/hook.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/runner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/action/warden.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/alias.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/batch_action.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/box.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/box_collection.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/box_metadata.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/bundler.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/capability_host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/cli.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/loader.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/v1.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/v1/dummy_config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/v1/loader.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/v1/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/v2.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/v2/dummy_config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/v2/loader.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/v2/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/v2/util.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/config/version_base.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/environment.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/machine.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/machine_index.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/machine_state.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/manager.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/state_file.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/communicator.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/manager.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/provider.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v1/provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/communicator.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/components.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/manager.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/provider.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/push.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/synced_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/plugin/v2/trigger.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/registry.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/shared_helpers.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/ui.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/ansi_escape_code_remover.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/busy.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/caps.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/checkpoint_client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/command_deprecation.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/counter.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/credential_scrubber.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/curl_helper.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/deep_merge.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/directory.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/downloader.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/env.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/experimental.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/file_checksum.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/file_mode.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/guest_hosts.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/guest_inspection.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/hash_with_indifferent_access.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/install_cli_autocomplete.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/io.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/ipv4_interfaces.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/is_port_open.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/keypair.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/line_ending_helpers.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/logging_formatter.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/map_command_options.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/mime.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/network_ip.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/numeric.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/platform.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/powershell.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/presence.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/retryable.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/safe_chdir.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/safe_env.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/safe_exec.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/safe_puts.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/scoped_hash_override.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/shell_quote.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/silence_warnings.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/ssh.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/stacked_proc_runner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/string_block_editor.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/subprocess.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/template_renderer.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/uploader.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/which.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/util/windows_path.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/vagrantfile.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/lib/vagrant/version.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/README.md
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/autocomplete/command/install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/autocomplete/command/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/autocomplete/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/command/add.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/command/download_mixins.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/command/list.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/command/outdated.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/command/prune.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/command/remove.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/command/repackage.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/command/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/command/update.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/box/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cap/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cap/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/auth/login.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/auth/logout.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/auth/middleware/add_authentication.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/auth/middleware/add_downloader_authentication.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/auth/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/auth/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/auth/whoami.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/box/create.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/box/delete.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/box/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/box/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/box/show.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/box/update.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/client/client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/list.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/locales/en.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/provider/create.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/provider/delete.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/provider/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/provider/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/provider/update.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/provider/upload.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/publish.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/search.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/util.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/version/create.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/version/delete.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/version/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/version/release.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/version/revoke.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/version/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/cloud/version/update.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/destroy/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/destroy/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/global-status/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/global-status/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/halt/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/halt/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/help/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/help/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/init/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/init/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/list-commands/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/list-commands/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/login/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/package/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/package/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/action.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/action/expunge_plugins.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/action/install_gem.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/action/license_plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/action/list_plugins.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/action/plugin_exists_check.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/action/repair_plugins.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/action/uninstall_plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/action/update_gems.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/base.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/expunge.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/license.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/list.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/mixin_install_opts.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/repair.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/uninstall.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/command/update.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/gem_helper.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/plugin/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/port/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/port/locales/en.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/port/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/powershell/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/powershell/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/powershell/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/powershell/scripts/enable_psremoting.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/powershell/scripts/reset_trustedhosts.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/provider/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/provider/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/provision/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/provision/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/push/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/push/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/rdp/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/rdp/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/rdp/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/rdp/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/reload/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/reload/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/resume/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/resume/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/snapshot/command/delete.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/snapshot/command/list.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/snapshot/command/pop.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/snapshot/command/push.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/snapshot/command/push_shared.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/snapshot/command/restore.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/snapshot/command/root.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/snapshot/command/save.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/snapshot/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/ssh/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/ssh/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/ssh_config/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/ssh_config/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/status/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/status/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/suspend/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/suspend/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/up/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/up/middleware/store_box_metadata.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/up/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/up/start_mixins.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/upload/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/upload/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/validate/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/validate/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/version/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/version/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/winrm/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/winrm/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/winrm_config/command.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/commands/winrm_config/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/ssh/communicator.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/ssh/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filter.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filters/cat.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filters/chmod.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filters/chown.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filters/grep.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filters/mkdir.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filters/rm.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filters/test.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filters/uname.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/command_filters/which.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/communicator.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/helper.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winrm/shell.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winssh/communicator.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winssh/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/communicators/winssh/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alpine/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alpine/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alpine/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alpine/cap/nfs_client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alpine/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alpine/cap/smb.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alpine/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alpine/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alt/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alt/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alt/cap/flavor.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alt/cap/network_scripts_dir.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alt/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alt/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/alt/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/amazon/cap/flavor.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/amazon/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/amazon/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/arch/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/arch/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/arch/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/arch/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/arch/cap/smb.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/arch/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/arch/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/atomic/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/atomic/cap/docker.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/atomic/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/atomic/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/bsd/cap/file_system.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/bsd/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/bsd/cap/mount_virtualbox_shared_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/bsd/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/bsd/cap/public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/bsd/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/bsd/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/centos/cap/flavor.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/centos/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/centos/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/coreos/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/coreos/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/coreos/cap/docker.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/coreos/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/coreos/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/choose_addressable_ip_addr.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/darwin_version.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/mount_smb_shared_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/mount_vmware_shared_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/shell_expand_guest_path.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/cap/verify_vmware_hgfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/darwin/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/debian/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/debian/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/debian/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/debian/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/debian/cap/smb.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/debian/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/debian/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/dragonflybsd/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/dragonflybsd/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/elementary/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/elementary/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/esxi/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/esxi/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/esxi/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/esxi/cap/mount_nfs_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/esxi/cap/public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/esxi/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/esxi/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/fedora/cap/flavor.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/fedora/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/fedora/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/freebsd/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/freebsd/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/freebsd/cap/mount_virtualbox_shared_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/freebsd/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/freebsd/cap/shell_expand_guest_path.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/freebsd/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/freebsd/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/funtoo/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/funtoo/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/funtoo/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/gentoo/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/gentoo/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/gentoo/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/gentoo/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/haiku/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/haiku/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/haiku/cap/insert_public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/haiku/cap/remove_public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/haiku/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/haiku/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/haiku/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/kali/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/kali/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/choose_addressable_ip_addr.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/file_system.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/mount_smb_shared_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/mount_virtualbox_shared_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/network_interfaces.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/persist_mount_shared_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/port.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/read_ip_address.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/reboot.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/cap/shell_expand_guest_path.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/linux/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/mint/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/mint/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/netbsd/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/netbsd/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/netbsd/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/netbsd/cap/shell_expand_guest_path.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/netbsd/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/netbsd/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/nixos/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/nixos/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/nixos/cap/nfs_client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/nixos/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/nixos/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/omnios/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/omnios/cap/mount_nfs_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/omnios/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/omnios/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/omnios/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/openbsd/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/openbsd/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/openbsd/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/openbsd/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/openbsd/cap/shell_expand_guest_path.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/openbsd/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/openbsd/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/photon/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/photon/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/photon/cap/docker.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/photon/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/photon/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/pld/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/pld/cap/flavor.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/pld/cap/network_scripts_dir.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/pld/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/pld/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/redhat/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/redhat/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/redhat/cap/flavor.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/redhat/cap/network_scripts_dir.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/redhat/cap/nfs_client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/redhat/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/redhat/cap/smb.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/redhat/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/redhat/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/slackware/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/slackware/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/slackware/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/slackware/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/cap/insert_public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/cap/mount_nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/cap/remove_public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/smartos/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/cap/file_system.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/cap/insert_public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/cap/mount_virtualbox_shared_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/cap/remove_public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris11/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris11/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris11/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris11/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/solaris11/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/suse/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/suse/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/suse/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/suse/cap/network_scripts_dir.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/suse/cap/nfs_client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/suse/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/suse/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/suse/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/tinycore/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/tinycore/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/tinycore/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/tinycore/cap/mount_nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/tinycore/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/tinycore/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/tinycore/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/trisquel/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/trisquel/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/ubuntu/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/ubuntu/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/cap/change_host_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/cap/choose_addressable_ip_addr.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/cap/configure_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/cap/file_system.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/cap/halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/cap/mount_shared_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/cap/public_key.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/cap/reboot.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/cap/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/guest_network.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/scripts/mount_volume.ps1.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/scripts/reboot_detect.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/scripts/set_work_network.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/guests/windows/scripts/winrs_v3_get_adapters.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/alt/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/alt/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/alt/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/arch/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/arch/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/arch/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/bsd/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/bsd/cap/path.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/bsd/cap/ssh.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/bsd/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/bsd/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/cap/configured_ip_addresses.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/cap/fs_iso.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/cap/path.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/cap/provider_install_virtualbox.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/cap/rdp.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/cap/smb.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/darwin/scripts/install_virtualbox.sh
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/freebsd/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/freebsd/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/freebsd/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/gentoo/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/gentoo/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/gentoo/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/linux/cap/fs_iso.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/linux/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/linux/cap/rdp.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/linux/cap/ssh.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/linux/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/linux/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/null/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/null/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/redhat/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/redhat/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/redhat/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/slackware/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/slackware/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/slackware/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/suse/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/suse/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/suse/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/void/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/void/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/void/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/cap/configured_ip_addresses.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/cap/fs_iso.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/cap/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/cap/provider_install_virtualbox.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/cap/ps.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/cap/rdp.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/cap/smb.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/cap/ssh.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/scripts/check_credentials.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/scripts/host_info.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/scripts/install_virtualbox.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/scripts/set_share.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/scripts/set_ssh_key_permissions.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/scripts/unset_share.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/hosts/windows/scripts/utils/VagrantSSH/VagrantSSH.psm1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v1/config/nfs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v1/config/package.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v1/config/ssh.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v1/config/vagrant.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v1/config/vm.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v1/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/cloud_init.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/disk.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/package.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/push.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/ssh.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/ssh_connect.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/trigger.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/vagrant.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/vm.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/vm_provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/vm_subvm.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/config/vm_trigger.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/kernel_v2/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/build.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/compare_synced_folders.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/connect_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/create.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/destroy.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/destroy_build_image.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/destroy_network.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/forwarded_ports.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/has_ssh.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/host_machine.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/host_machine_build_dir.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/host_machine_port_checker.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/host_machine_port_warning.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/host_machine_required.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/host_machine_sync_folders.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/host_machine_sync_folders_disable.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/init_state.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/is_build.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/is_host_machine_created.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/login.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/prepare_forwarded_port_collision_params.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/prepare_networks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/prepare_nfs_settings.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/prepare_nfs_valid_ids.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/prepare_ssh.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/pull.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/start.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/stop.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/action/wait_for_running.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/cap/has_communicator.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/cap/proxy_machine.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/cap/public_address.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/command/exec.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/command/logs.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/command/run.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/communicator.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/driver.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/driver/compose.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/executor/local.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/executor/vagrant.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/hostmachine/Vagrantfile
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/provider.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/docker/synced_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/check_access.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/check_enabled.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/configure.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/delete_vm.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/export.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/import.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/is_windows.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/message_will_not_destroy.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/net_set_mac.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/net_set_vlan.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/package.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/package_metadata_json.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/package_setup_files.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/package_setup_folders.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/package_vagrantfile.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/read_guest_ip.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/read_state.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/resume_vm.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/set_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/snapshot_delete.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/snapshot_restore.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/snapshot_save.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/start_instance.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/stop_instance.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/suspend_vm.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/action/wait_for_ip_address.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/cap/cleanup_disks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/cap/configure_disks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/cap/public_address.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/cap/snapshot_list.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/cap/validate_disk_ext.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/driver.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/provider.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/attach_disk_drive.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/check_hyperv.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/check_hyperv_access.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/clone_vhd.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/configure_vm.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/create_snapshot.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/delete_snapshot.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/delete_vm.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/dismount_vhd.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/export_vm.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/file_sync.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/get_network_config.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/get_network_mac.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/get_switches.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/get_vhd.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/get_vm_status.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/has_vmcx_support.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/import_vm.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/list_hdds.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/list_snapshots.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/new_vhd.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/remove_disk_drive.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/resize_disk_drive.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/restore_snapshot.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/resume_vm.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/set_enhanced_session_transport_type.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/set_name.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/set_network_mac.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/set_network_vlan.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/set_vm_integration_services.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/start_vm.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/stop_vm.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/suspend_vm.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/utils/VagrantMessages/VagrantMessages.psm1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/hyperv/scripts/utils/VagrantVM/VagrantVM.psm1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/boot.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/check_accessible.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/check_created.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/check_guest_additions.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/check_running.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/check_virtualbox.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/clean_machine_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/clear_forwarded_ports.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/clear_network_interfaces.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/created.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/customize.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/destroy.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/destroy_unused_network_interfaces.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/discard_state.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/export.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/forced_halt.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/forward_ports.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/import.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/import_master.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/is_paused.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/is_running.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/is_saved.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/match_mac_address.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/message_already_running.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/message_not_created.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/message_not_running.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/message_will_not_destroy.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/network.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/network_fix_ipv6.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/package.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/package_setup_files.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/package_setup_folders.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/package_vagrantfile.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/prepare_clone_snapshot.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/prepare_forwarded_port_collision_params.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/prepare_nfs_settings.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/prepare_nfs_valid_ids.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/resume.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/sane_defaults.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/set_default_nic_type.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/set_name.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/setup_package_files.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/snapshot_delete.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/snapshot_restore.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/snapshot_save.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/action/suspend.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/cap.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/cap/cleanup_disks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/cap/configure_disks.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/cap/mount_options.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/cap/public_address.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/cap/validate_disk_ext.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/base.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/meta.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/version_4_0.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/version_4_1.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/version_4_2.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/version_4_3.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/version_5_0.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/version_5_1.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/version_5_2.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/version_6_0.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/driver/version_6_1.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/model/forwarded_port.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/model/storage_controller.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/model/storage_controller_array.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/provider.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/synced_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/providers/virtualbox/util/compile_forwarded_ports.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/alpine/ansible_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/arch/ansible_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/debian/ansible_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/facts.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/fedora/ansible_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/freebsd/ansible_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/pip/pip.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/posix/ansible_installed.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/redhat/ansible_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/suse/ansible_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/cap/guest/ubuntu/ansible_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/config/base.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/config/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/config/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/constants.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/helpers.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/provisioner/base.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/provisioner/guest.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/ansible/provisioner/host.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/cfengine/cap/debian/cfengine_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/cfengine/cap/linux/cfengine_installed.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/cfengine/cap/linux/cfengine_needs_bootstrap.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/cfengine/cap/redhat/cfengine_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/cfengine/cap/suse/cfengine_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/cfengine/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/cfengine/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/cfengine/provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/debian/chef_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/freebsd/chef_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/freebsd/chef_installed.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/linux/chef_installed.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/omnios/chef_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/omnios/chef_installed.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/redhat/chef_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/suse/chef_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/windows/chef_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/cap/windows/chef_installed.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/command_builder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/config/base.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/config/base_runner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/config/chef_apply.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/config/chef_client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/config/chef_solo.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/config/chef_zero.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/installer.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/omnibus.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/provisioner/base.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/provisioner/chef_apply.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/provisioner/chef_client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/provisioner/chef_solo.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/chef/provisioner/chef_zero.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/container/client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/container/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/container/installer.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/container/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/container/provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/cap/centos/docker_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/cap/centos/docker_start_service.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/cap/debian/docker_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/cap/debian/docker_start_service.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/cap/fedora/docker_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/cap/linux/docker_configure_vagrant_user.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/cap/linux/docker_daemon_running.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/cap/linux/docker_installed.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/cap/windows/docker_daemon_running.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/installer.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/docker/provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/file/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/file/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/file/provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/podman/cap/centos/podman_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/podman/cap/linux/podman_installed.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/podman/cap/redhat/podman_install.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/podman/client.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/podman/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/podman/installer.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/podman/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/podman/provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/puppet/config/puppet.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/puppet/config/puppet_server.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/puppet/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/puppet/provisioner/puppet.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/puppet/provisioner/puppet_server.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/salt/bootstrap-salt.ps1
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/salt/bootstrap-salt.sh
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/salt/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/salt/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/salt/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/salt/provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/shell/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/shell/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/provisioners/shell/provisioner.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/atlas/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/atlas/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/atlas/locales/en.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/atlas/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/atlas/push.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/ftp/adapter.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/ftp/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/ftp/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/ftp/locales/en.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/ftp/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/ftp/push.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/heroku/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/heroku/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/heroku/locales/en.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/heroku/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/heroku/push.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/local-exec/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/local-exec/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/local-exec/locales/en.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/local-exec/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/local-exec/push.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/noop/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/noop/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/pushes/noop/push.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/nfs/action_cleanup.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/nfs/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/nfs/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/nfs/synced_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/rsync/command/rsync.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/rsync/command/rsync_auto.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/rsync/default_unix_cap.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/rsync/helper.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/rsync/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/rsync/synced_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/smb/cap/default_fstab_modification.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/smb/cap/mount_options.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/smb/config.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/smb/errors.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/smb/plugin.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/smb/synced_folder.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/plugins/synced_folders/unix_mount_helpers.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/scripts/sign.sh
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/scripts/website_push_www.sh
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/tasks/acceptance.rake
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/tasks/bundler.rake
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/tasks/test.rake
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/commands/init/Vagrantfile.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/commands/init/Vagrantfile.min.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/commands/ssh_config/config.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/commands/winrm_config/config.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/config/messages.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/config/validation_failed.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/alpine/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/alpine/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/alt/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/alt/network_ipv4address.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/alt/network_ipv4route.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/alt/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/arch/default_network/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/arch/default_network/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/arch/default_network/network_static6.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/arch/systemd_networkd/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/arch/systemd_networkd/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/arch/systemd_networkd/network_static6.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/coreos/etcd.service.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/debian/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/debian/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/debian/network_static6.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/freebsd/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/freebsd/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/freebsd/network_static6.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/funtoo/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/funtoo/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/funtoo/network_static6.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/gentoo/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/gentoo/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/gentoo/network_static6.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/gentoo/network_systemd.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/linux/etc_fstab.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/netbsd/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/netbsd/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/nixos/hostname.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/nixos/network.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/openbsd/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/openbsd/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/openbsd/network_static6.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/redhat/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/redhat/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/redhat/network_static6.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/slackware/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/slackware/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/suse/network_dhcp.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/suse/network_static.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/guests/suse/network_static6.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/locales/comm_winrm.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/locales/command_ps.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/locales/command_rdp.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/locales/en.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/locales/guest_windows.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/locales/providers_docker.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/locales/providers_hyperv.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/locales/synced_folder_smb.yml
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/nfs/exports_bsd.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/nfs/exports_darwin.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/nfs/exports_linux.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/package_Vagrantfile.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/provisioners/chef_client/client.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/provisioners/chef_solo/solo.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/provisioners/chef_zero/zero.erb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/templates/rgloader.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/vagrant-spec.config.example.rb
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/vagrant.gemspec
%%GEM_BASE_DIR%%/vagrant-%%PORTVERSION%%/version.txt
%%GEMS_DIR%%specifications/vagrant-%%PORTVERSION%%.gemspec
%%DATADIR%%/embedded/rgloader/loader.rb
@dir %%GEMS_DIR%%extensions