Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.98 KB | None | 0 0
  1. % vagrant up --provision
  2. Bringing machine 'default' up with 'virtualbox' provider...
  3. ==> default: Running provisioner: ansible...
  4. Vagrant has automatically selected the compatibility mode '2.0'
  5. according to the Ansible version installed (2.5.2).
  6.  
  7. Alternatively, the compatibility mode can be specified in your Vagrantfile:
  8. https://www.vagrantup.com/docs/provisioning/ansible_common.html#compatibility_mode
  9.  
  10. default: Running ansible-playbook...
  11. Vault password:
  12.  
  13. PLAY [Provision a cnxion local server] *****************************************
  14.  
  15. TASK [Gathering Facts] *********************************************************
  16. ok: [default]
  17.  
  18. TASK [users : Install the latest versions of packages for users role] **********
  19. changed: [default] => (item=[u'openssl', u'libssl-dev', u'libssl-doc', u'libffi-dev', u'curl'])
  20.  
  21. TASK [users : Create the application user] *************************************
  22. ok: [default]
  23.  
  24. TASK [users : Create the application group] ************************************
  25. ok: [default]
  26.  
  27. TASK [users : Add the application user to the application group] ***************
  28. ok: [default]
  29.  
  30. TASK [users : Ensure github.com is a known host] *******************************
  31. # github.com:22 SSH-2.0-libssh_0.7.0
  32. changed: [default]
  33.  
  34. TASK [users : Retrieve keys from GitHub] ***************************************
  35. ok: [default] => (item=https://github.com/nkeilar.keys)
  36. ok: [default] => (item=https://github.com/rugala.keys)
  37. ok: [default] => (item=https://github.com/bectodd.keys)
  38. [WARNING]: Consider using the get_url or uri module rather than running curl.
  39. If you need to use command because get_url or uri is insufficient you can add
  40. warn=False to this command task or set command_warnings=False in ansible.cfg to
  41. get rid of this message.
  42.  
  43.  
  44. TASK [users : Adding keys to authorized_keys] **********************************
  45. changed: [default] => (item=root)
  46. changed: [default] => (item=vagrant)
  47.  
  48. TASK [users : Adding raw SSH public keys to authorized_keys] *******************
  49. skipping: [default] => (item=root)
  50. skipping: [default] => (item=vagrant)
  51.  
  52. TASK [apt : Update apt cache] **************************************************
  53. ok: [default]
  54.  
  55. TASK [apt : Install unattended-upgrades] ***************************************
  56. changed: [default]
  57.  
  58. TASK [apt : Configure unattended-upgrades] *************************************
  59. changed: [default]
  60.  
  61. TASK [apt : Install common server requirements] ********************************
  62. changed: [default] => (item=[u'htop', u'curl', u'git', u'vim', u'unzip'])
  63.  
  64. TASK [sshd : Install the latest versions of packages for sshd role] ************
  65. ok: [default] => (item=[u'openssh-server'])
  66.  
  67. TASK [sshd : Configure sshd] ***************************************************
  68. changed: [default]
  69.  
  70. TASK [sshd : Enable sshd] ******************************************************
  71. [DEPRECATION WARNING]: state=running is deprecated. Please use state=started.
  72. This feature will be removed in version 2.7. Deprecation warnings can be
  73. disabled by setting deprecation_warnings=False in ansible.cfg.
  74. ok: [default]
  75.  
  76. TASK [locales : Generate locale] ***********************************************
  77. ok: [default]
  78.  
  79. TASK [locales : Set locales] ***************************************************
  80. changed: [default]
  81.  
  82. TASK [swap : Create swap file] *************************************************
  83. changed: [default]
  84.  
  85. TASK [swap : Change swap file permissions] *************************************
  86. changed: [default]
  87.  
  88. TASK [swap : Check swap file type] *********************************************
  89. ok: [default]
  90.  
  91. TASK [swap : Make swap file] ***************************************************
  92. changed: [default]
  93.  
  94. TASK [swap : Write swap entry in fstab] ****************************************
  95. changed: [default]
  96.  
  97. TASK [swap : Mount swap] *******************************************************
  98. skipping: [default]
  99.  
  100. TASK [timezone : Make sure tzdata is installed] ********************************
  101. ok: [default]
  102.  
  103. TASK [timezone : Update the hardware clock] ************************************
  104. ok: [default]
  105.  
  106. TASK [timezone : Ensure /etc/localtime is deleted (because dpkg-reconfigure writes to /etc/localtime)] ***
  107. ok: [default]
  108.  
  109. TASK [timezone : Symlink the correct localtime (/etc/localtime)] ***************
  110. ok: [default]
  111.  
  112. TASK [python : Ensure that Python packages are installed] **********************
  113. changed: [default] => (item=[u'python', u'python-dev', u'python-pip', u'libjpeg-dev', u'libjpeg8-dev', u'zlib1g-dev', u'libtiff5-dev', u'libfreetype6-dev', u'liblcms2-dev', u'libwebp-dev', u'tcl8.6-dev', u'tk8.6-dev', u'python-tk'])
  114.  
  115. TASK [python : Update pip] *****************************************************
  116. changed: [default]
  117.  
  118. TASK [python : Update setuptools] **********************************************
  119. changed: [default]
  120.  
  121. TASK [python : Install virtualenv] *********************************************
  122. changed: [default]
  123.  
  124. TASK [postgres : Install PostgreSQL and its dependencies] **********************
  125. changed: [default] => (item=[u'postgresql-9.5', u'postgresql-contrib', u'python-psycopg2', u'libpq-dev'])
  126.  
  127. TASK [postgres : Install PostgreSQL dependencies] ******************************
  128. skipping: [default] => (item=[])
  129.  
  130. TASK [postgres : Ensure the PostgreSQL service is running] *********************
  131. ok: [default]
  132.  
  133. TASK [postgres : Update postgresql configuration] ******************************
  134. changed: [default]
  135.  
  136. TASK [postgres : Update host-based authentication configuration for postgresql (pg_hba)] ***
  137. changed: [default]
  138.  
  139. TASK [postgres : Restart postgresql] *******************************************
  140. changed: [default]
  141.  
  142. TASK [postgres : Ensure database is created] ***********************************
  143. changed: [default]
  144.  
  145. TASK [postgres : Ensure user has access to the database] ***********************
  146. changed: [default]
  147.  
  148. TASK [postgres : Ensure postgis is installed] **********************************
  149. skipping: [default] => (item=[])
  150.  
  151. TASK [postgres : Create postgis extension] *************************************
  152. skipping: [default]
  153.  
  154. TASK [postgres : Create postgis_topology extension] ****************************
  155. skipping: [default]
  156.  
  157. TASK [postgres : Create backups directory] *************************************
  158. skipping: [default]
  159.  
  160. TASK [postgres : Copy backup script] *******************************************
  161. skipping: [default]
  162.  
  163. TASK [postgres : Setup cron for database backups] ******************************
  164. skipping: [default]
  165.  
  166. TASK [elasticsearch : Accept Oracle license prior JDK installation] ************
  167. changed: [default]
  168.  
  169. TASK [elasticsearch : Update repositories for JAVA] ****************************
  170. changed: [default] => (item=ppa:webupd8team/java)
  171.  
  172. TASK [elasticsearch : Install JAVA dependencies] *******************************
  173. changed: [default]
  174.  
  175. TASK [elasticsearch : Install python-software-properties] **********************
  176. changed: [default]
  177.  
  178. TASK [elasticsearch : Configure group for elasticsearch] ***********************
  179. changed: [default]
  180.  
  181. TASK [elasticsearch : Configure user for elasticsearch] ************************
  182. changed: [default]
  183.  
  184. TASK [elasticsearch : Ensure elasticsearch work directories exists] ************
  185. changed: [default] => (item=/usr/share/elasticsearch)
  186. changed: [default] => (item=/tmp/elasticsearch)
  187. changed: [default] => (item=/var/log/elasticsearch)
  188. changed: [default] => (item=/var/lib/elasticsearch)
  189. changed: [default] => (item=/etc/elasticsearch)
  190. changed: [default] => (item=/var/run/elasticsearch)
  191.  
  192. TASK [elasticsearch : Check if we have elastic with same version installed] ****
  193. ok: [default]
  194.  
  195. TASK [elasticsearch : Try to stop elasticsearch if running] ********************
  196. fatal: [default]: FAILED! => {"changed": false, "msg": "Could not find the requested service elasticsearch: host"}
  197. ...ignoring
  198.  
  199. TASK [elasticsearch : Download Elasticsearch deb package] **********************
  200. changed: [default]
  201.  
  202. TASK [elasticsearch : Uninstalling previous version if applicable] *************
  203. ok: [default]
  204.  
  205. TASK [elasticsearch : Remove elasticsearch directory] **************************
  206. changed: [default]
  207.  
  208. TASK [elasticsearch : Install Elasticsearch deb] *******************************
  209. changed: [default]
  210.  
  211. TASK [elasticsearch : Configure limits max_open_files] *************************
  212. changed: [default]
  213.  
  214. TASK [elasticsearch : Configure limits max_locked_memory] **********************
  215. changed: [default]
  216.  
  217. TASK [elasticsearch : Configure initd java opts in /etc/init.d/elasticsearch] ***
  218. changed: [default]
  219.  
  220. TASK [elasticsearch : Configuring Elasticsearch node] **************************
  221. changed: [default]
  222.  
  223. TASK [elasticsearch : Configure /etc/default/elasticsearch] ********************
  224. changed: [default]
  225.  
  226. TASK [elasticsearch : Ensure Elasticsearch is running and started on boot] *****
  227. skipping: [default]
  228.  
  229. RUNNING HANDLER [sshd : Restart sshd] ******************************************
  230. changed: [default]
  231.  
  232. RUNNING HANDLER [elasticsearch : Restart Elasticsearch] ************************
  233. changed: [default]
  234.  
  235. TASK [nginx : Install nginx] ***************************************************
  236. skipping: [default]
  237.  
  238. TASK [nginx : Ensure nginx service is started] *********************************
  239. skipping: [default]
  240.  
  241. TASK [nginx : Ensure default nginx configuration is created] *******************
  242. skipping: [default]
  243.  
  244. TASK [nginx : Ensure that the default site is disabled] ************************
  245. skipping: [default]
  246.  
  247. TASK [nginx : Install oprenresty] **********************************************
  248. skipping: [default]
  249.  
  250. TASK [nginx : Ensure openresty service is started] *****************************
  251. skipping: [default]
  252.  
  253. TASK [nginx : Ensure default openresty nginx configuration is created] *********
  254. skipping: [default]
  255.  
  256. TASK [nginx : Create webapps directory] ****************************************
  257. changed: [default]
  258.  
  259. TASK [supervisor : Install Supervisord] ****************************************
  260. changed: [default]
  261.  
  262. TASK [supervisor : Create Supervisor conf and log directories] *****************
  263. ok: [default] => (item=/etc/supervisor)
  264. ok: [default] => (item=/etc/supervisor/conf.d)
  265. ok: [default] => (item=/var/log/supervisor)
  266.  
  267. TASK [supervisor : Configure Supervisord] **************************************
  268. changed: [default]
  269.  
  270. TASK [supervisor : Link Supervisord conf file] *********************************
  271. changed: [default]
  272.  
  273. TASK [supervisor : Create supervisord init script] *****************************
  274. changed: [default]
  275.  
  276. TASK [supervisor : Add supervisord to init] ************************************
  277. ok: [default]
  278.  
  279. TASK [supervisor : Ensure supervisord is running] ******************************
  280. [DEPRECATION WARNING]: state=running is deprecated. Please use state=started.
  281. This feature will be removed in version 2.7. Deprecation warnings can be
  282. disabled by setting deprecation_warnings=False in ansible.cfg.
  283. ok: [default]
  284.  
  285. TASK [redis : Install redis] ***************************************************
  286. [DEPRECATION WARNING]: State 'installed' is deprecated. Using state 'present'
  287. instead.. This feature will be removed in version 2.9. Deprecation warnings can
  288. be disabled by setting deprecation_warnings=False in ansible.cfg.
  289. changed: [default]
  290.  
  291. TASK [redis : Ensure Redis is configured] **************************************
  292. changed: [default]
  293.  
  294. TASK [redis : Ensure Redis server is running and enabled on boot] **************
  295. ok: [default]
  296.  
  297. TASK [ngrok : Install required packages for ngrok] *****************************
  298. ok: [default]
  299.  
  300. TASK [ngrok : Check for existing ngrok binary] *********************************
  301. ok: [default]
  302.  
  303. TASK [ngrok : Download ngrok] **************************************************
  304. changed: [default]
  305.  
  306. TASK [ngrok : Unzip ngrok] *****************************************************
  307. changed: [default]
  308.  
  309. TASK [ngrok : Install ngrok binary] ********************************************
  310. changed: [default]
  311.  
  312. TASK [app-django : Ensure root webapps app directory is created] ***************
  313. changed: [default]
  314.  
  315. TASK [app-django : Ensure webapps/app data directories exist] ******************
  316. changed: [default] => (item=/var/webapps/cnxion/var)
  317. changed: [default] => (item=/var/webapps/cnxion/assets)
  318. changed: [default] => (item=/var/webapps/cnxion/var/cache)
  319. changed: [default] => (item=/var/webapps/cnxion/var/cache/webassets)
  320. changed: [default] => (item=/var/webapps/cnxion/var/log)
  321. changed: [default] => (item=/var/webapps/cnxion/var/run)
  322. changed: [default] => (item=/var/webapps/cnxion/var/tmp)
  323. changed: [default] => (item=/var/webapps/cnxion/var/lib)
  324. changed: [default] => (item=/var/webapps/cnxion/var/lib/images)
  325. changed: [default] => (item=/var/webapps/cnxion/var/lib/media)
  326. changed: [default] => (item=/var/webapps/cnxion/var/keys)
  327.  
  328. TASK [app-django : Copy the SSH private key for cloning the repo] **************
  329. skipping: [default]
  330.  
  331. TASK [app-django : Fetching source code of the application] ********************
  332. skipping: [default]
  333.  
  334. TASK [app-django : Ensure that the application files are read-only] ************
  335. skipping: [default]
  336.  
  337. TASK [app-django : Ensure manage.py has executable rights] *********************
  338. fatal: [default]: FAILED! => {"changed": false, "msg": "file (/home/vagrant/cnxion/backend/manage.py) is absent, cannot continue", "path": "/home/vagrant/cnxion/backend/manage.py", "state": "absent"}
  339.  
  340. RUNNING HANDLER [supervisor : Restart supervisord] *****************************
  341.  
  342. RUNNING HANDLER [redis : Restart redis] ****************************************
  343. to retry, use: --limit @/home/vb/src/cnxion/deployment/provision_local.retry
  344.  
  345. PLAY RECAP *********************************************************************
  346. default : ok=75 changed=51 unreachable=0 failed=1
  347.  
  348. #<Thread:0x000055eac07e3b68@/usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/batch_action.rb:71 run> terminated with exception (report_on_exception is true):
  349. Traceback (most recent call last):
  350. 86: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/batch_action.rb:82:in `block (2 levels) in run'
  351. 85: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/machine.rb:188:in `action'
  352. 84: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/machine.rb:188:in `call'
  353. 83: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/environment.rb:592:in `lock'
  354. 82: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/machine.rb:202:in `block in action'
  355. 81: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/machine.rb:227:in `action_raw'
  356. 80: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `run'
  357. 79: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/util/busy.rb:19:in `busy'
  358. 78: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `block in run'
  359. 77: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builder.rb:116:in `call'
  360. 76: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  361. 75: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/plugins/providers/virtualbox/action/check_virtualbox.rb:17:in `call'
  362. 74: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  363. 73: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/call.rb:53:in `call'
  364. 72: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `run'
  365. 71: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/util/busy.rb:19:in `busy'
  366. 70: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `block in run'
  367. 69: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builder.rb:116:in `call'
  368. 68: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  369. 67: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
  370. 66: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  371. 65: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
  372. 64: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  373. 63: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
  374. 62: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  375. 61: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/call.rb:53:in `call'
  376. 60: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `run'
  377. 59: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/util/busy.rb:19:in `busy'
  378. 58: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `block in run'
  379. 57: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builder.rb:116:in `call'
  380. 56: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  381. 55: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
  382. 54: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  383. 53: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
  384. 52: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  385. 51: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/plugins/providers/virtualbox/action/check_virtualbox.rb:17:in `call'
  386. 50: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  387. 49: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
  388. 48: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  389. 47: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/box_check_outdated.rb:23:in `call'
  390. 46: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  391. 45: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/call.rb:53:in `call'
  392. 44: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `run'
  393. 43: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/util/busy.rb:19:in `busy'
  394. 42: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `block in run'
  395. 41: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builder.rb:116:in `call'
  396. 40: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  397. 39: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
  398. 38: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  399. 37: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/plugins/providers/virtualbox/action/check_virtualbox.rb:17:in `call'
  400. 36: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  401. 35: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/config_validate.rb:25:in `call'
  402. 34: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  403. 33: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/call.rb:53:in `call'
  404. 32: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `run'
  405. 31: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/util/busy.rb:19:in `busy'
  406. 30: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `block in run'
  407. 29: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builder.rb:116:in `call'
  408. 28: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  409. 27: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
  410. 26: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  411. 25: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/call.rb:53:in `call'
  412. 24: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `run'
  413. 23: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/util/busy.rb:19:in `busy'
  414. 22: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `block in run'
  415. 21: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builder.rb:116:in `call'
  416. 20: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  417. 19: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
  418. 18: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  419. 17: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/plugins/providers/virtualbox/action/check_accessible.rb:18:in `call'
  420. 16: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  421. 15: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/provision.rb:103:in `call'
  422. 14: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/provision.rb:103:in `each'
  423. 13: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/provision.rb:126:in `block in call'
  424. 12: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/provision.rb:126:in `call'
  425. 11: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/environment.rb:504:in `hook'
  426. 10: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `run'
  427. 9: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/util/busy.rb:19:in `busy'
  428. 8: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/runner.rb:66:in `block in run'
  429. 7: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builder.rb:116:in `call'
  430. 6: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:34:in `call'
  431. 5: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:95:in `block in finalize_action'
  432. 4: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/warden.rb:95:in `call'
  433. 3: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/lib/vagrant/action/builtin/provision.rb:138:in `run_provisioner'
  434. 2: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/plugins/provisioners/ansible/provisioner/host.rb:27:in `provision'
  435. 1: from /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/plugins/provisioners/ansible/provisioner/host.rb:179:in `execute_ansible_playbook_from_host'
  436. /usr/share/rubygems-integration/all/gems/vagrant-2.0.2/plugins/provisioners/ansible/provisioner/host.rb:104:in `execute_command_from_host': Ansible failed to complete successfully. Any error output should be (VagrantPlugins::Ansible::Errors::AnsibleCommandFailed)
  437. visible above. Please fix these errors and try again.
  438. Ansible failed to complete successfully. Any error output should be
  439. visible above. Please fix these errors and try again.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement