1. ansible実行用のhostをvagrantのansible_localで設定
  2. hostからansibleでcentOS 7.2の基本設定 ← ここ

前提

  • OS X El Capitan(10.11.6)

  • Vagrant インストール済み

1
2
3
$ vagrant version
Installed Version: 1.8.7
Latest Version: 1.8.7

※前回からバージョンアップ

1
2
$ VBoxManage -version
5.1.10r112026

2.hostからansibleでcentOS 7.2の基本設定

ansibleのBest Practices を参考に、以下のファイル構成で準備する。

ファイル構成

 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
$ tree
.
├── Vagrantfile
├── ansible.cfg
└── provision
    ├── development
    ├── group_vars
    │   └── web.yml
    ├── host
    ├── roles
    │   ├── CentOS7.2
    │   │   ├── handlers
    │   │   │   └── main.yml
    │   │   ├── tasks
    │   │   │   ├── chrony.yml
    │   │   │   ├── env.yml
    │   │   │   ├── locale.yml
    │   │   │   ├── main.yml
    │   │   │   ├── selinux.yml
    │   │   │   └── yumallupdate.yml
    │   │   ├── templates
    │   │   │   ├── alias.sh.j2
    │   │   │   └── chrony.conf.j2
    │   │   └── vars
    │   │       └── main.yml
    │   └── ansible
    │       ├── tasks
    │       │   ├── main.yml
    │       │   └── ssh.yml
    │       └── templates
    │           └── ssh
    │               └── config.j2
    ├── site.retry
    └── site.yml

12 directories, 20 files

各ファイル

Vagrantfile

 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
# -*- mode: ruby -*-
# vi: set ft=ruby :

# All Vagrant configuration is done below. The "2" in Vagrant.configure
# configures the configuration version (we support older styles for
# backwards compatibility). Please don't change it unless you know what
# you're doing.
Vagrant.configure("2") do |config|
  config.vm.define "web" do |node|
    node.vm.box = "bento/centos-7.2"
    node.vm.hostname = "web"
    node.vm.network :private_network, ip: "192.168.52.52"
  end
  config.vm.define "host" do |node|
    node.vm.box = "bento/centos-7.2"
    node.vm.hostname = "host"
    node.vm.network :private_network, ip: "192.168.52.51"
    node.vm.synced_folder "./provision", "/vagrant", owner: "vagrant", group: "vagrant", mount_options: ["dmode=775"]

    # Run Ansible from the Vagrant VM
    node.vm.provision :ansible_local do |ansible|
      ansible.playbook       = "site.yml"
      ansible.verbose        = true
      ansible.install        = true
      ansible.install_mode   = :default
      ansible.limit          = "host" # or only "nodes" group, etc.
      ansible.inventory_path = "host"
    end
  end
end

ansible.cfg

変更なし

1
2
3
4
5
[defaults]
host_key_checking = no

[ssh_connection]
ssh_args = -o ControlMaster=auto -o ControlPersist=60s -o UserKnownHostsFile=/dev/null -o IdentitiesOnly=yes

inventory

  • provision/inventory → provision/host
1
2
# host inventory
host ansible_connection=local
  • provision/development
1
2
3
4
# development Inventory

[web]
192.168.52.52

playbook

  • provision/site.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
# file: site.yml

# ---------------
# host
# ---------------
- hosts: host
  gather_facts: yes
  roles:
    - CentOS7.2
    - ansible

# ---------------
- hosts: web
  gather_facts: yes
  roles:
    - CentOS7.2

vars

  • provision/group_vars/web.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
---
# file: group_vars/web.yml

ansible_port: 22

iptables:
  accept_tcp_rules:
    - { port: 22 }
    - { port: 80 }
    - { port: 88 }
    - { port: 443 }
    - { port: 3306 }

roles

  • provision/roles/ansible/tasks
    • main.yml
 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
---
# file: ./ansible/tasks/ssh.yml
- block:

  - name: ssh config
    template:
      src: ssh/config.j2
      dest: /home/vagrant/.ssh/config
      owner: vagrant
      group: vagrant
      mode: 0600

  - name: check existing id_rsa
    stat:
      path: /home/vagrant/.ssh/id_rsa
    register: id_rsa
  - debug: var=id_rsa

  - name: Generate SSH keys
    shell: ssh-keygen -b 2048 -t rsa -f /home/vagrant/.ssh/id_rsa -q -N ""
    args:
      creates: /home/vagrant/.ssh/id_rsa
    when: id_rsa.stat.exists == False

  - name: copy ssh keys
    shell: sshpass -p 'vagrant' ssh-copy-id -i /home/vagrant/.ssh/id_rsa.pub vagrant@{{ item }}
    with_items:
      - 192.168.52.52 # front

  - name: check ssh
    shell: "ansible -i /vagrant/development {{ item }} -m ping"
    with_items:
      - 192.168.52.52 # front

  become: yes
  become_user: vagrant
  tags: ansible
  • provision/roles/ansible/templates
    • ssh/config.j2
1
2
3
# {{ ansible_managed }}
# ~/.ssh/config
StrictHostKeyChecking no
  • provision/roles/CentOS7.2/tasks
    • main.yml
1
2
3
4
5
6
7
8
---
# file: ./CentOS7.2/tasks/main.yml

- include: yumallupdate.yml
- include: locale.yml
- include: chrony.yml
- include: env.yml
- include: selinux.yml
  • yumallupdate.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
---
# file: ./CentOS7.2/tasks/yumallupdate.yml

- block:

  - name: yum update all
    yum: name=* state=latest update_cache=yes

  - name: check CentOS version
    command: cat /etc/redhat-release

  become: yes
  tags:
    - construct
    - yumallupdate
  • locale.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
---
# file: ./CentOS7.2/tasks/locale.yml

- block:

  - name: set LANG
    command: localectl set-locale LANG="{{ locale }}"

  - name: set keymap
    command: localectl set-keymap "{{ keymap }}"

  - name: set timezone
    command: timedatectl set-timezone "{{ timezone }}"

  become: yes
  tags:
    - construct
    - locale
  • chrony.yml
 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
---
# file: ./CentOS7.2/tasks/chrony.yml

- block:

  - name: install chrony
    yum:
      name: chrony
      state: present

  - name: start chrony
    service:
      name: chronyd
      state: started
      enabled: yes

  - name: copy chrony.conf template
    template:
      src: chrony.conf.j2
      dest: /etc/chrony.conf
      owner: root
      group: root
      mode: 0644
    notify:
      - restart chronyd

  become: yes
  tags:
    - construct
    - chrony
  • env.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
---
# file: ./CentOS7.2/tasks/env.yml

- block:

  - name: copy /etc/profile.d/alias.sh template
    template:
      src: alias.sh.j2
      dest: /etc/profile.d/alias.sh
      owner: root
      group: root
      mode: 0644

  become: yes
  tags:
    - construct
    - env
  • selinux.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
---
# file: ./CentOS7.2/tasks/selinux.yml

- block:

  - name: install selinux util
    yum:
      name: "{{ item }}"
      state: present
    with_items:
      - libselinux-python
      - libselinux-utils
      - selinux-policy
      - selinux-policy-targeted

  - name: disable selinux
    selinux:
      state: disabled

  become: yes
  tags:
    - construct
    - selinux
  • provision/roles/CentOS7.2/handlers
    • main.yml
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
---
# file: ./CentOS7.2/handlers/main.yml

- block:
  - name: restart chronyd
    become: yes
    service:
      name: chronyd
      state: restarted
      enabled: yes
  • provision/roles/CentOS7.2/templates
    • alias.sh.j2
1
2
3
4
5
6
---
# {{ ansible_managed }}
# /etc/profile.d/alias.sh
alias ls="ls -G"
alias ll="ls -lG"
alias la="ls -laG"
  • chrony.conf.j2
 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
---
# {{ ansible_managed }}
# Use public servers from the pool.ntp.org project.
# Please consider joining the pool (http://www.pool.ntp.org/join.html).
server ntp.nict.jp iburst
server ntp1.jst.mfeed.ad.jp iburst
server ntp2.jst.mfeed.ad.jp iburst
server ntp3.jst.mfeed.ad.jp iburst

# Ignore stratum in source selection.
stratumweight 0

# Record the rate at which the system clock gains/losses time.
driftfile /var/lib/chrony/drift

# Enable kernel RTC synchronization.
rtcsync

# In first three updates step the system clock instead of slew
# if the adjustment is larger than 10 seconds.
makestep 10 3

# Allow NTP client access from local network.
#allow 192.168/16

# Listen for commands only on localhost.
bindcmdaddress 127.0.0.1
bindcmdaddress ::1

# Serve time even if not synchronized to any NTP server.
#local stratum 10

keyfile /etc/chrony.keys

# Specify the key used as password for chronyc.
commandkey 1

# Generate command key if missing.
generatecommandkey

# Disable logging of client accesses.
noclientlog

# Send a message to syslog if a clock adjustment is larger than 0.5 seconds.
logchange 0.5

logdir /var/log/chrony
#log measurements statistics tracking
  • provision/roles/CentOS7.2/vars
    • main.yml
1
2
3
4
5
---
# file: ./CentOS7.2/vars/main.yml
locale: ja_JP.UTF-8
keymap: jp106
timezone: Asia/Tokyo

vagrantの実行

  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
$ vagrant up --provision
Bringing machine 'web' up with 'virtualbox' provider...
Bringing machine 'host' up with 'virtualbox' provider...
==> web: Importing base box 'bento/centos-7.2'...
==> web: Matching MAC address for NAT networking...
==> web: Checking if box 'bento/centos-7.2' is up to date...
==> web: Setting the name of the VM: vagrant_web_1480400603229_26813
==> web: Clearing any previously set network interfaces...
==> web: Preparing network interfaces based on configuration...
    web: Adapter 1: nat
    web: Adapter 2: hostonly
==> web: Forwarding ports...
    web: 22 (guest) => 2222 (host) (adapter 1)
==> web: Booting VM...
==> web: Waiting for machine to boot. This may take a few minutes...
    web: SSH address: 127.0.0.1:2222
    web: SSH username: vagrant
    web: SSH auth method: private key
    web: Warning: Remote connection disconnect. Retrying...
    web: Warning: Remote connection disconnect. Retrying...
    web: Warning: Remote connection disconnect. Retrying...
    web:
    web: Vagrant insecure key detected. Vagrant will automatically replace
    web: this with a newly generated keypair for better security.
    web:
    web: Inserting generated public key within guest...
    web: Removing insecure key from the guest if it's present...
    web: Key inserted! Disconnecting and reconnecting using new SSH key...
==> web: Machine booted and ready!
[web] GuestAdditions versions on your host (5.1.10) and guest (5.1.6) do not match.
Loaded plugins: fastestmirror
Determining fastest mirrors
 * base: ftp.riken.jp
 * extras: ftp.riken.jp
 * updates: ftp.riken.jp
Package binutils-2.23.52.0.1-55.el7.x86_64 already installed and latest version
Package 1:make-3.82-21.el7.x86_64 already installed and latest version
Package bzip2-1.0.6-13.el7.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package gcc.x86_64 0:4.8.5-4.el7 will be installed
--> Processing Dependency: cpp = 4.8.5-4.el7 for package: gcc-4.8.5-4.el7.x86_64
--> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.8.5-4.el7.x86_64
---> Package kernel-devel.x86_64 0:3.10.0-327.el7 will be installed
---> Package perl.x86_64 4:5.16.3-286.el7 will be installed
--> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Getopt::Long) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Unix) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Functions) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Cwd) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64
--> Running transaction check
---> Package cpp.x86_64 0:4.8.5-4.el7 will be installed
---> Package glibc-devel.x86_64 0:2.17-106.el7_2.8 will be installed
--> Processing Dependency: glibc-headers = 2.17-106.el7_2.8 for package: glibc-devel-2.17-106.el7_2.8.x86_64
--> Processing Dependency: glibc = 2.17-106.el7_2.8 for package: glibc-devel-2.17-106.el7_2.8.x86_64
--> Processing Dependency: glibc-headers for package: glibc-devel-2.17-106.el7_2.8.x86_64
---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed
---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed
---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed
---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed
---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed
---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed
--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch
--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-2.el7.noarch
---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed
---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed
--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed
---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed
---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed
---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed
---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed
---> Package perl-constant.noarch 0:1.27-2.el7 will be installed
---> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed
---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed
--> Running transaction check
---> Package glibc.x86_64 0:2.17-105.el7 will be updated
--> Processing Dependency: glibc = 2.17-105.el7 for package: glibc-common-2.17-105.el7.x86_64
---> Package glibc.x86_64 0:2.17-106.el7_2.8 will be an update
---> Package glibc-headers.x86_64 0:2.17-106.el7_2.8 will be installed
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-106.el7_2.8.x86_64
--> Processing Dependency: kernel-headers for package: glibc-headers-2.17-106.el7_2.8.x86_64
---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed
---> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed
---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed
--> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch
--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch
---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed
--> Running transaction check
---> Package glibc-common.x86_64 0:2.17-105.el7 will be updated
---> Package glibc-common.x86_64 0:2.17-106.el7_2.8 will be an update
---> Package kernel-headers.x86_64 0:3.10.0-327.36.3.el7 will be installed
---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed
--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed
--> Running transaction check
---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed
---> Package perl-parent.noarch 1:0.225-244.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package                   Arch      Version                   Repository  Size
================================================================================
Installing:
 gcc                       x86_64    4.8.5-4.el7               base        16 M
 kernel-devel              x86_64    3.10.0-327.el7            base        11 M
 perl                      x86_64    4:5.16.3-286.el7          base       8.0 M
Installing for dependencies:
 cpp                       x86_64    4.8.5-4.el7               base       5.9 M
 glibc-devel               x86_64    2.17-106.el7_2.8          updates    1.0 M
 glibc-headers             x86_64    2.17-106.el7_2.8          updates    663 k
 kernel-headers            x86_64    3.10.0-327.36.3.el7       updates    3.2 M
 perl-Carp                 noarch    1.26-244.el7              base        19 k
 perl-Encode               x86_64    2.51-7.el7                base       1.5 M
 perl-Exporter             noarch    5.68-3.el7                base        28 k
 perl-File-Path            noarch    2.09-2.el7                base        26 k
 perl-File-Temp            noarch    0.23.01-3.el7             base        56 k
 perl-Filter               x86_64    1.49-3.el7                base        76 k
 perl-Getopt-Long          noarch    2.40-2.el7                base        56 k
 perl-HTTP-Tiny            noarch    0.033-3.el7               base        38 k
 perl-PathTools            x86_64    3.40-5.el7                base        82 k
 perl-Pod-Escapes          noarch    1:1.04-286.el7            base        50 k
 perl-Pod-Perldoc          noarch    3.20-4.el7                base        87 k
 perl-Pod-Simple           noarch    1:3.28-4.el7              base       216 k
 perl-Pod-Usage            noarch    1.63-3.el7                base        27 k
 perl-Scalar-List-Utils    x86_64    1.27-248.el7              base        36 k
 perl-Socket               x86_64    2.010-3.el7               base        49 k
 perl-Storable             x86_64    2.45-3.el7                base        77 k
 perl-Text-ParseWords      noarch    3.29-4.el7                base        14 k
 perl-Time-HiRes           x86_64    4:1.9725-3.el7            base        45 k
 perl-Time-Local           noarch    1.2300-2.el7              base        24 k
 perl-constant             noarch    1.27-2.el7                base        19 k
 perl-libs                 x86_64    4:5.16.3-286.el7          base       687 k
 perl-macros               x86_64    4:5.16.3-286.el7          base        43 k
 perl-parent               noarch    1:0.225-244.el7           base        12 k
 perl-podlators            noarch    2.5.1-3.el7               base       112 k
 perl-threads              x86_64    1.87-4.el7                base        49 k
 perl-threads-shared       x86_64    1.43-6.el7                base        39 k
Updating for dependencies:
 glibc                     x86_64    2.17-106.el7_2.8          updates    3.6 M
 glibc-common              x86_64    2.17-106.el7_2.8          updates     11 M

Transaction Summary
================================================================================
Install  3 Packages (+30 Dependent packages)
Upgrade             (  2 Dependent packages)

Total download size: 64 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
warning: /var/cache/yum/x86_64/7/updates/packages/glibc-devel-2.17-106.el7_2.8.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Public key for glibc-devel-2.17-106.el7_2.8.x86_64.rpm is not installed
Public key for cpp-4.8.5-4.el7.x86_64.rpm is not installed
--------------------------------------------------------------------------------
Total                                              3.8 MB/s |  64 MB  00:16
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
 Userid     : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
 Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
 Package    : centos-release-7-2.1511.el7.centos.2.10.x86_64 (@anaconda)
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Warning: RPMDB altered outside of yum.
  Updating   : glibc-2.17-106.el7_2.8.x86_64                               1/37
  Updating   : glibc-common-2.17-106.el7_2.8.x86_64                        2/37
  Installing : 1:perl-parent-0.225-244.el7.noarch                          3/37
  Installing : perl-HTTP-Tiny-0.033-3.el7.noarch                           4/37
  Installing : perl-podlators-2.5.1-3.el7.noarch                           5/37
  Installing : perl-Pod-Perldoc-3.20-4.el7.noarch                          6/37
  Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch                      7/37
  Installing : perl-Text-ParseWords-3.29-4.el7.noarch                      8/37
  Installing : perl-Encode-2.51-7.el7.x86_64                               9/37
  Installing : perl-Pod-Usage-1.63-3.el7.noarch                           10/37
  Installing : 4:perl-libs-5.16.3-286.el7.x86_64                          11/37
  Installing : 4:perl-macros-5.16.3-286.el7.x86_64                        12/37
  Installing : perl-Storable-2.45-3.el7.x86_64                            13/37
  Installing : perl-Exporter-5.68-3.el7.noarch                            14/37
  Installing : perl-constant-1.27-2.el7.noarch                            15/37
  Installing : perl-Time-Local-1.2300-2.el7.noarch                        16/37
  Installing : perl-Socket-2.010-3.el7.x86_64                             17/37
  Installing : perl-Carp-1.26-244.el7.noarch                              18/37
  Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                      19/37
  Installing : perl-PathTools-3.40-5.el7.x86_64                           20/37
  Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 21/37
  Installing : perl-File-Temp-0.23.01-3.el7.noarch                        22/37
  Installing : perl-File-Path-2.09-2.el7.noarch                           23/37
  Installing : perl-threads-shared-1.43-6.el7.x86_64                      24/37
  Installing : perl-threads-1.87-4.el7.x86_64                             25/37
  Installing : perl-Filter-1.49-3.el7.x86_64                              26/37
  Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch                        27/37
  Installing : perl-Getopt-Long-2.40-2.el7.noarch                         28/37
  Installing : 4:perl-5.16.3-286.el7.x86_64                               29/37
  Installing : cpp-4.8.5-4.el7.x86_64                                     30/37
  Installing : kernel-headers-3.10.0-327.36.3.el7.x86_64                  31/37
  Installing : glibc-headers-2.17-106.el7_2.8.x86_64                      32/37
  Installing : glibc-devel-2.17-106.el7_2.8.x86_64                        33/37
  Installing : gcc-4.8.5-4.el7.x86_64                                     34/37
  Installing : kernel-devel-3.10.0-327.el7.x86_64                         35/37
  Cleanup    : glibc-2.17-105.el7.x86_64                                  36/37
  Cleanup    : glibc-common-2.17-105.el7.x86_64                           37/37
  Verifying  : perl-HTTP-Tiny-0.033-3.el7.noarch                           1/37
  Verifying  : gcc-4.8.5-4.el7.x86_64                                      2/37
  Verifying  : perl-threads-shared-1.43-6.el7.x86_64                       3/37
  Verifying  : perl-Storable-2.45-3.el7.x86_64                             4/37
  Verifying  : kernel-headers-3.10.0-327.36.3.el7.x86_64                   5/37
  Verifying  : perl-Exporter-5.68-3.el7.noarch                             6/37
  Verifying  : perl-constant-1.27-2.el7.noarch                             7/37
  Verifying  : perl-PathTools-3.40-5.el7.x86_64                            8/37
  Verifying  : 4:perl-libs-5.16.3-286.el7.x86_64                           9/37
  Verifying  : 4:perl-macros-5.16.3-286.el7.x86_64                        10/37
  Verifying  : 1:perl-Pod-Escapes-1.04-286.el7.noarch                     11/37
  Verifying  : 1:perl-parent-0.225-244.el7.noarch                         12/37
  Verifying  : 4:perl-5.16.3-286.el7.x86_64                               13/37
  Verifying  : glibc-devel-2.17-106.el7_2.8.x86_64                        14/37
  Verifying  : perl-File-Temp-0.23.01-3.el7.noarch                        15/37
  Verifying  : 1:perl-Pod-Simple-3.28-4.el7.noarch                        16/37
  Verifying  : glibc-headers-2.17-106.el7_2.8.x86_64                      17/37
  Verifying  : perl-Time-Local-1.2300-2.el7.noarch                        18/37
  Verifying  : glibc-common-2.17-106.el7_2.8.x86_64                       19/37
  Verifying  : perl-Pod-Perldoc-3.20-4.el7.noarch                         20/37
  Verifying  : perl-Socket-2.010-3.el7.x86_64                             21/37
  Verifying  : perl-Carp-1.26-244.el7.noarch                              22/37
  Verifying  : perl-podlators-2.5.1-3.el7.noarch                          23/37
  Verifying  : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                      24/37
  Verifying  : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 25/37
  Verifying  : glibc-2.17-106.el7_2.8.x86_64                              26/37
  Verifying  : perl-Pod-Usage-1.63-3.el7.noarch                           27/37
  Verifying  : perl-Encode-2.51-7.el7.x86_64                              28/37
  Verifying  : perl-Getopt-Long-2.40-2.el7.noarch                         29/37
  Verifying  : kernel-devel-3.10.0-327.el7.x86_64                         30/37
  Verifying  : cpp-4.8.5-4.el7.x86_64                                     31/37
  Verifying  : perl-File-Path-2.09-2.el7.noarch                           32/37
  Verifying  : perl-threads-1.87-4.el7.x86_64                             33/37
  Verifying  : perl-Filter-1.49-3.el7.x86_64                              34/37
  Verifying  : perl-Text-ParseWords-3.29-4.el7.noarch                     35/37
  Verifying  : glibc-common-2.17-105.el7.x86_64                           36/37
  Verifying  : glibc-2.17-105.el7.x86_64                                  37/37

Installed:
  gcc.x86_64 0:4.8.5-4.el7           kernel-devel.x86_64 0:3.10.0-327.el7
  perl.x86_64 4:5.16.3-286.el7

Dependency Installed:
  cpp.x86_64 0:4.8.5-4.el7
  glibc-devel.x86_64 0:2.17-106.el7_2.8
  glibc-headers.x86_64 0:2.17-106.el7_2.8
  kernel-headers.x86_64 0:3.10.0-327.36.3.el7
  perl-Carp.noarch 0:1.26-244.el7
  perl-Encode.x86_64 0:2.51-7.el7
  perl-Exporter.noarch 0:5.68-3.el7
  perl-File-Path.noarch 0:2.09-2.el7
  perl-File-Temp.noarch 0:0.23.01-3.el7
  perl-Filter.x86_64 0:1.49-3.el7
  perl-Getopt-Long.noarch 0:2.40-2.el7
  perl-HTTP-Tiny.noarch 0:0.033-3.el7
  perl-PathTools.x86_64 0:3.40-5.el7
  perl-Pod-Escapes.noarch 1:1.04-286.el7
  perl-Pod-Perldoc.noarch 0:3.20-4.el7
  perl-Pod-Simple.noarch 1:3.28-4.el7
  perl-Pod-Usage.noarch 0:1.63-3.el7
  perl-Scalar-List-Utils.x86_64 0:1.27-248.el7
  perl-Socket.x86_64 0:2.010-3.el7
  perl-Storable.x86_64 0:2.45-3.el7
  perl-Text-ParseWords.noarch 0:3.29-4.el7
  perl-Time-HiRes.x86_64 4:1.9725-3.el7
  perl-Time-Local.noarch 0:1.2300-2.el7
  perl-constant.noarch 0:1.27-2.el7
  perl-libs.x86_64 4:5.16.3-286.el7
  perl-macros.x86_64 4:5.16.3-286.el7
  perl-parent.noarch 1:0.225-244.el7
  perl-podlators.noarch 0:2.5.1-3.el7
  perl-threads.x86_64 0:1.87-4.el7
  perl-threads-shared.x86_64 0:1.43-6.el7

Dependency Updated:
  glibc.x86_64 0:2.17-106.el7_2.8     glibc-common.x86_64 0:2.17-106.el7_2.8

Complete!
Copy iso file /Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso into the box /tmp/VBoxGuestAdditions.iso
mount: /dev/loop0 is write-protected, mounting read-only
Installing Virtualbox Guest Additions 5.1.10 - guest version is 5.1.6
Verifying archive integrity... All good.
Uncompressing VirtualBox 5.1.10 Guest Additions for Linux...........
VirtualBox Guest Additions installer
Removing installed version 5.1.6 of VirtualBox Guest Additions...
Copying additional installer modules ...
Installing additional modules ...
vboxadd.sh: Building Guest Additions kernel modules.
vboxadd.sh: You should restart your guest to make sure the new modules are actually used.
vboxadd.sh: Starting the VirtualBox Guest Additions.

Could not find the X.Org or XFree86 Window System, skipping.

==> web: Checking for guest additions in VM...
==> web: Setting hostname...
==> web: Configuring and enabling network interfaces...
==> web: Mounting shared folders...
    web: /vagrant => /Users/XXXXX/development/bitbucket.org/vagrant
==> host: Importing base box 'bento/centos-7.2'...
==> host: Matching MAC address for NAT networking...
==> host: Checking if box 'bento/centos-7.2' is up to date...
==> host: Setting the name of the VM: vagrant_host_1480400782463_92110
==> host: Fixed port collision for 22 => 2222. Now on port 2200.
==> host: Clearing any previously set network interfaces...
==> host: Preparing network interfaces based on configuration...
    host: Adapter 1: nat
    host: Adapter 2: hostonly
==> host: Forwarding ports...
    host: 22 (guest) => 2200 (host) (adapter 1)
==> host: Booting VM...
==> host: Waiting for machine to boot. This may take a few minutes...
    host: SSH address: 127.0.0.1:2200
    host: SSH username: vagrant
    host: SSH auth method: private key
    host: Warning: Remote connection disconnect. Retrying...
    host: Warning: Remote connection disconnect. Retrying...
    host: Warning: Remote connection disconnect. Retrying...
    host:
    host: Vagrant insecure key detected. Vagrant will automatically replace
    host: this with a newly generated keypair for better security.
    host:
    host: Inserting generated public key within guest...
    host: Removing insecure key from the guest if it's present...
    host: Key inserted! Disconnecting and reconnecting using new SSH key...
==> host: Machine booted and ready!
[host] GuestAdditions versions on your host (5.1.10) and guest (5.1.6) do not match.
Loaded plugins: fastestmirror
Determining fastest mirrors
 * base: ftp.iij.ad.jp
 * extras: ftp.iij.ad.jp
 * updates: ftp.iij.ad.jp
Package binutils-2.23.52.0.1-55.el7.x86_64 already installed and latest version
Package 1:make-3.82-21.el7.x86_64 already installed and latest version
Package bzip2-1.0.6-13.el7.x86_64 already installed and latest version
Resolving Dependencies
--> Running transaction check
---> Package gcc.x86_64 0:4.8.5-4.el7 will be installed
--> Processing Dependency: cpp = 4.8.5-4.el7 for package: gcc-4.8.5-4.el7.x86_64
--> Processing Dependency: glibc-devel >= 2.2.90-12 for package: gcc-4.8.5-4.el7.x86_64
---> Package kernel-devel.x86_64 0:3.10.0-327.el7 will be installed
---> Package perl.x86_64 4:5.16.3-286.el7 will be installed
--> Processing Dependency: perl-libs = 4:5.16.3-286.el7 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Socket) >= 1.3 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) >= 1.10 for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-macros for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl-libs for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads::shared) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(threads) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(constant) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::Local) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Time::HiRes) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Storable) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Socket) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Scalar::Util) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::XHTML) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Pod::Simple::Search) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Getopt::Long) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Filter::Util::Call) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Temp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Unix) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec::Functions) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Spec) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(File::Path) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Exporter) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Cwd) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: perl(Carp) for package: 4:perl-5.16.3-286.el7.x86_64
--> Processing Dependency: libperl.so()(64bit) for package: 4:perl-5.16.3-286.el7.x86_64
--> Running transaction check
---> Package cpp.x86_64 0:4.8.5-4.el7 will be installed
---> Package glibc-devel.x86_64 0:2.17-106.el7_2.8 will be installed
--> Processing Dependency: glibc-headers = 2.17-106.el7_2.8 for package: glibc-devel-2.17-106.el7_2.8.x86_64
--> Processing Dependency: glibc = 2.17-106.el7_2.8 for package: glibc-devel-2.17-106.el7_2.8.x86_64
--> Processing Dependency: glibc-headers for package: glibc-devel-2.17-106.el7_2.8.x86_64
---> Package perl-Carp.noarch 0:1.26-244.el7 will be installed
---> Package perl-Exporter.noarch 0:5.68-3.el7 will be installed
---> Package perl-File-Path.noarch 0:2.09-2.el7 will be installed
---> Package perl-File-Temp.noarch 0:0.23.01-3.el7 will be installed
---> Package perl-Filter.x86_64 0:1.49-3.el7 will be installed
---> Package perl-Getopt-Long.noarch 0:2.40-2.el7 will be installed
--> Processing Dependency: perl(Pod::Usage) >= 1.14 for package: perl-Getopt-Long-2.40-2.el7.noarch
--> Processing Dependency: perl(Text::ParseWords) for package: perl-Getopt-Long-2.40-2.el7.noarch
---> Package perl-PathTools.x86_64 0:3.40-5.el7 will be installed
---> Package perl-Pod-Simple.noarch 1:3.28-4.el7 will be installed
--> Processing Dependency: perl(Pod::Escapes) >= 1.04 for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
--> Processing Dependency: perl(Encode) for package: 1:perl-Pod-Simple-3.28-4.el7.noarch
---> Package perl-Scalar-List-Utils.x86_64 0:1.27-248.el7 will be installed
---> Package perl-Socket.x86_64 0:2.010-3.el7 will be installed
---> Package perl-Storable.x86_64 0:2.45-3.el7 will be installed
---> Package perl-Time-HiRes.x86_64 4:1.9725-3.el7 will be installed
---> Package perl-Time-Local.noarch 0:1.2300-2.el7 will be installed
---> Package perl-constant.noarch 0:1.27-2.el7 will be installed
---> Package perl-libs.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-macros.x86_64 4:5.16.3-286.el7 will be installed
---> Package perl-threads.x86_64 0:1.87-4.el7 will be installed
---> Package perl-threads-shared.x86_64 0:1.43-6.el7 will be installed
--> Running transaction check
---> Package glibc.x86_64 0:2.17-105.el7 will be updated
--> Processing Dependency: glibc = 2.17-105.el7 for package: glibc-common-2.17-105.el7.x86_64
---> Package glibc.x86_64 0:2.17-106.el7_2.8 will be an update
---> Package glibc-headers.x86_64 0:2.17-106.el7_2.8 will be installed
--> Processing Dependency: kernel-headers >= 2.2.1 for package: glibc-headers-2.17-106.el7_2.8.x86_64
--> Processing Dependency: kernel-headers for package: glibc-headers-2.17-106.el7_2.8.x86_64
---> Package perl-Encode.x86_64 0:2.51-7.el7 will be installed
---> Package perl-Pod-Escapes.noarch 1:1.04-286.el7 will be installed
---> Package perl-Pod-Usage.noarch 0:1.63-3.el7 will be installed
--> Processing Dependency: perl(Pod::Text) >= 3.15 for package: perl-Pod-Usage-1.63-3.el7.noarch
--> Processing Dependency: perl-Pod-Perldoc for package: perl-Pod-Usage-1.63-3.el7.noarch
---> Package perl-Text-ParseWords.noarch 0:3.29-4.el7 will be installed
--> Running transaction check
---> Package glibc-common.x86_64 0:2.17-105.el7 will be updated
---> Package glibc-common.x86_64 0:2.17-106.el7_2.8 will be an update
---> Package kernel-headers.x86_64 0:3.10.0-327.36.3.el7 will be installed
---> Package perl-Pod-Perldoc.noarch 0:3.20-4.el7 will be installed
--> Processing Dependency: perl(parent) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
--> Processing Dependency: perl(HTTP::Tiny) for package: perl-Pod-Perldoc-3.20-4.el7.noarch
---> Package perl-podlators.noarch 0:2.5.1-3.el7 will be installed
--> Running transaction check
---> Package perl-HTTP-Tiny.noarch 0:0.033-3.el7 will be installed
---> Package perl-parent.noarch 1:0.225-244.el7 will be installed
--> Finished Dependency Resolution

Dependencies Resolved

================================================================================
 Package                   Arch      Version                   Repository  Size
================================================================================
Installing:
 gcc                       x86_64    4.8.5-4.el7               base        16 M
 kernel-devel              x86_64    3.10.0-327.el7            base        11 M
 perl                      x86_64    4:5.16.3-286.el7          base       8.0 M
Installing for dependencies:
 cpp                       x86_64    4.8.5-4.el7               base       5.9 M
 glibc-devel               x86_64    2.17-106.el7_2.8          updates    1.0 M
 glibc-headers             x86_64    2.17-106.el7_2.8          updates    663 k
 kernel-headers            x86_64    3.10.0-327.36.3.el7       updates    3.2 M
 perl-Carp                 noarch    1.26-244.el7              base        19 k
 perl-Encode               x86_64    2.51-7.el7                base       1.5 M
 perl-Exporter             noarch    5.68-3.el7                base        28 k
 perl-File-Path            noarch    2.09-2.el7                base        26 k
 perl-File-Temp            noarch    0.23.01-3.el7             base        56 k
 perl-Filter               x86_64    1.49-3.el7                base        76 k
 perl-Getopt-Long          noarch    2.40-2.el7                base        56 k
 perl-HTTP-Tiny            noarch    0.033-3.el7               base        38 k
 perl-PathTools            x86_64    3.40-5.el7                base        82 k
 perl-Pod-Escapes          noarch    1:1.04-286.el7            base        50 k
 perl-Pod-Perldoc          noarch    3.20-4.el7                base        87 k
 perl-Pod-Simple           noarch    1:3.28-4.el7              base       216 k
 perl-Pod-Usage            noarch    1.63-3.el7                base        27 k
 perl-Scalar-List-Utils    x86_64    1.27-248.el7              base        36 k
 perl-Socket               x86_64    2.010-3.el7               base        49 k
 perl-Storable             x86_64    2.45-3.el7                base        77 k
 perl-Text-ParseWords      noarch    3.29-4.el7                base        14 k
 perl-Time-HiRes           x86_64    4:1.9725-3.el7            base        45 k
 perl-Time-Local           noarch    1.2300-2.el7              base        24 k
 perl-constant             noarch    1.27-2.el7                base        19 k
 perl-libs                 x86_64    4:5.16.3-286.el7          base       687 k
 perl-macros               x86_64    4:5.16.3-286.el7          base        43 k
 perl-parent               noarch    1:0.225-244.el7           base        12 k
 perl-podlators            noarch    2.5.1-3.el7               base       112 k
 perl-threads              x86_64    1.87-4.el7                base        49 k
 perl-threads-shared       x86_64    1.43-6.el7                base        39 k
Updating for dependencies:
 glibc                     x86_64    2.17-106.el7_2.8          updates    3.6 M
 glibc-common              x86_64    2.17-106.el7_2.8          updates     11 M

Transaction Summary
================================================================================
Install  3 Packages (+30 Dependent packages)
Upgrade             (  2 Dependent packages)

Total download size: 64 M
Downloading packages:
Delta RPMs disabled because /usr/bin/applydeltarpm not installed.
Public key for glibc-devel-2.17-106.el7_2.8.x86_64.rpm is not installed
warning: /var/cache/yum/x86_64/7/updates/packages/glibc-devel-2.17-106.el7_2.8.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Public key for cpp-4.8.5-4.el7.x86_64.rpm is not installed
--------------------------------------------------------------------------------
Total                                              6.0 MB/s |  64 MB  00:10
Retrieving key from file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Importing GPG key 0xF4A80EB5:
 Userid     : "CentOS-7 Key (CentOS 7 Official Signing Key) <security@centos.org>"
 Fingerprint: 6341 ab27 53d7 8a78 a7c2 7bb1 24c6 a8a7 f4a8 0eb5
 Package    : centos-release-7-2.1511.el7.centos.2.10.x86_64 (@anaconda)
 From       : /etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-7
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Warning: RPMDB altered outside of yum.
  Updating   : glibc-2.17-106.el7_2.8.x86_64                               1/37
  Updating   : glibc-common-2.17-106.el7_2.8.x86_64                        2/37
  Installing : 1:perl-parent-0.225-244.el7.noarch                          3/37
  Installing : perl-HTTP-Tiny-0.033-3.el7.noarch                           4/37
  Installing : perl-podlators-2.5.1-3.el7.noarch                           5/37
  Installing : perl-Pod-Perldoc-3.20-4.el7.noarch                          6/37
  Installing : 1:perl-Pod-Escapes-1.04-286.el7.noarch                      7/37
  Installing : perl-Text-ParseWords-3.29-4.el7.noarch                      8/37
  Installing : perl-Encode-2.51-7.el7.x86_64                               9/37
  Installing : perl-Pod-Usage-1.63-3.el7.noarch                           10/37
  Installing : 4:perl-libs-5.16.3-286.el7.x86_64                          11/37
  Installing : 4:perl-macros-5.16.3-286.el7.x86_64                        12/37
  Installing : perl-Storable-2.45-3.el7.x86_64                            13/37
  Installing : perl-Exporter-5.68-3.el7.noarch                            14/37
  Installing : perl-constant-1.27-2.el7.noarch                            15/37
  Installing : perl-Time-Local-1.2300-2.el7.noarch                        16/37
  Installing : perl-Socket-2.010-3.el7.x86_64                             17/37
  Installing : perl-Carp-1.26-244.el7.noarch                              18/37
  Installing : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                      19/37
  Installing : perl-PathTools-3.40-5.el7.x86_64                           20/37
  Installing : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 21/37
  Installing : perl-File-Temp-0.23.01-3.el7.noarch                        22/37
  Installing : perl-File-Path-2.09-2.el7.noarch                           23/37
  Installing : perl-threads-shared-1.43-6.el7.x86_64                      24/37
  Installing : perl-threads-1.87-4.el7.x86_64                             25/37
  Installing : perl-Filter-1.49-3.el7.x86_64                              26/37
  Installing : 1:perl-Pod-Simple-3.28-4.el7.noarch                        27/37
  Installing : perl-Getopt-Long-2.40-2.el7.noarch                         28/37
  Installing : 4:perl-5.16.3-286.el7.x86_64                               29/37
  Installing : cpp-4.8.5-4.el7.x86_64                                     30/37
  Installing : kernel-headers-3.10.0-327.36.3.el7.x86_64                  31/37
  Installing : glibc-headers-2.17-106.el7_2.8.x86_64                      32/37
  Installing : glibc-devel-2.17-106.el7_2.8.x86_64                        33/37
  Installing : gcc-4.8.5-4.el7.x86_64                                     34/37
  Installing : kernel-devel-3.10.0-327.el7.x86_64                         35/37
  Cleanup    : glibc-2.17-105.el7.x86_64                                  36/37
  Cleanup    : glibc-common-2.17-105.el7.x86_64                           37/37
  Verifying  : perl-HTTP-Tiny-0.033-3.el7.noarch                           1/37
  Verifying  : gcc-4.8.5-4.el7.x86_64                                      2/37
  Verifying  : perl-threads-shared-1.43-6.el7.x86_64                       3/37
  Verifying  : perl-Storable-2.45-3.el7.x86_64                             4/37
  Verifying  : kernel-headers-3.10.0-327.36.3.el7.x86_64                   5/37
  Verifying  : perl-Exporter-5.68-3.el7.noarch                             6/37
  Verifying  : perl-constant-1.27-2.el7.noarch                             7/37
  Verifying  : perl-PathTools-3.40-5.el7.x86_64                            8/37
  Verifying  : 4:perl-libs-5.16.3-286.el7.x86_64                           9/37
  Verifying  : 4:perl-macros-5.16.3-286.el7.x86_64                        10/37
  Verifying  : 1:perl-Pod-Escapes-1.04-286.el7.noarch                     11/37
  Verifying  : 1:perl-parent-0.225-244.el7.noarch                         12/37
  Verifying  : 4:perl-5.16.3-286.el7.x86_64                               13/37
  Verifying  : glibc-devel-2.17-106.el7_2.8.x86_64                        14/37
  Verifying  : perl-File-Temp-0.23.01-3.el7.noarch                        15/37
  Verifying  : 1:perl-Pod-Simple-3.28-4.el7.noarch                        16/37
  Verifying  : glibc-headers-2.17-106.el7_2.8.x86_64                      17/37
  Verifying  : perl-Time-Local-1.2300-2.el7.noarch                        18/37
  Verifying  : glibc-common-2.17-106.el7_2.8.x86_64                       19/37
  Verifying  : perl-Pod-Perldoc-3.20-4.el7.noarch                         20/37
  Verifying  : perl-Socket-2.010-3.el7.x86_64                             21/37
  Verifying  : perl-Carp-1.26-244.el7.noarch                              22/37
  Verifying  : perl-podlators-2.5.1-3.el7.noarch                          23/37
  Verifying  : 4:perl-Time-HiRes-1.9725-3.el7.x86_64                      24/37
  Verifying  : perl-Scalar-List-Utils-1.27-248.el7.x86_64                 25/37
  Verifying  : glibc-2.17-106.el7_2.8.x86_64                              26/37
  Verifying  : perl-Pod-Usage-1.63-3.el7.noarch                           27/37
  Verifying  : perl-Encode-2.51-7.el7.x86_64                              28/37
  Verifying  : perl-Getopt-Long-2.40-2.el7.noarch                         29/37
  Verifying  : kernel-devel-3.10.0-327.el7.x86_64                         30/37
  Verifying  : cpp-4.8.5-4.el7.x86_64                                     31/37
  Verifying  : perl-File-Path-2.09-2.el7.noarch                           32/37
  Verifying  : perl-threads-1.87-4.el7.x86_64                             33/37
  Verifying  : perl-Filter-1.49-3.el7.x86_64                              34/37
  Verifying  : perl-Text-ParseWords-3.29-4.el7.noarch                     35/37
  Verifying  : glibc-common-2.17-105.el7.x86_64                           36/37
  Verifying  : glibc-2.17-105.el7.x86_64                                  37/37

Installed:
  gcc.x86_64 0:4.8.5-4.el7           kernel-devel.x86_64 0:3.10.0-327.el7
  perl.x86_64 4:5.16.3-286.el7

Dependency Installed:
  cpp.x86_64 0:4.8.5-4.el7
  glibc-devel.x86_64 0:2.17-106.el7_2.8
  glibc-headers.x86_64 0:2.17-106.el7_2.8
  kernel-headers.x86_64 0:3.10.0-327.36.3.el7
  perl-Carp.noarch 0:1.26-244.el7
  perl-Encode.x86_64 0:2.51-7.el7
  perl-Exporter.noarch 0:5.68-3.el7
  perl-File-Path.noarch 0:2.09-2.el7
  perl-File-Temp.noarch 0:0.23.01-3.el7
  perl-Filter.x86_64 0:1.49-3.el7
  perl-Getopt-Long.noarch 0:2.40-2.el7
  perl-HTTP-Tiny.noarch 0:0.033-3.el7
  perl-PathTools.x86_64 0:3.40-5.el7
  perl-Pod-Escapes.noarch 1:1.04-286.el7
  perl-Pod-Perldoc.noarch 0:3.20-4.el7
  perl-Pod-Simple.noarch 1:3.28-4.el7
  perl-Pod-Usage.noarch 0:1.63-3.el7
  perl-Scalar-List-Utils.x86_64 0:1.27-248.el7
  perl-Socket.x86_64 0:2.010-3.el7
  perl-Storable.x86_64 0:2.45-3.el7
  perl-Text-ParseWords.noarch 0:3.29-4.el7
  perl-Time-HiRes.x86_64 4:1.9725-3.el7
  perl-Time-Local.noarch 0:1.2300-2.el7
  perl-constant.noarch 0:1.27-2.el7
  perl-libs.x86_64 4:5.16.3-286.el7
  perl-macros.x86_64 4:5.16.3-286.el7
  perl-parent.noarch 1:0.225-244.el7
  perl-podlators.noarch 0:2.5.1-3.el7
  perl-threads.x86_64 0:1.87-4.el7
  perl-threads-shared.x86_64 0:1.43-6.el7

Dependency Updated:
  glibc.x86_64 0:2.17-106.el7_2.8     glibc-common.x86_64 0:2.17-106.el7_2.8

Complete!
Copy iso file /Applications/VirtualBox.app/Contents/MacOS/VBoxGuestAdditions.iso into the box /tmp/VBoxGuestAdditions.iso
mount: /dev/loop0 is write-protected, mounting read-only
Installing Virtualbox Guest Additions 5.1.10 - guest version is 5.1.6
Verifying archive integrity... All good.
Uncompressing VirtualBox 5.1.10 Guest Additions for Linux...........
VirtualBox Guest Additions installer
Removing installed version 5.1.6 of VirtualBox Guest Additions...
Copying additional installer modules ...
Installing additional modules ...
vboxadd.sh: Building Guest Additions kernel modules.
vboxadd.sh: You should restart your guest to make sure the new modules are actually used.
vboxadd.sh: Starting the VirtualBox Guest Additions.

Could not find the X.Org or XFree86 Window System, skipping.

==> host: Checking for guest additions in VM...
==> host: Setting hostname...
==> host: Configuring and enabling network interfaces...
==> host: Mounting shared folders...
    host: /vagrant => /Users/XXXXX/development/bitbucket.org/vagrant/provision
==> host: Running provisioner: ansible_local...
    host: Installing Ansible...
    host: Running ansible-playbook...
cd /vagrant && PYTHONUNBUFFERED=1 ANSIBLE_FORCE_COLOR=true ansible-playbook --limit="host" --inventory-file=host -v site.yml
Using /etc/ansible/ansible.cfg as config file

PLAY [host] ********************************************************************

TASK [setup] *******************************************************************
ok: [host]

TASK [CentOS7.2 : yum update all] **********************************************
changed: [host] => {"changed": true, "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: ftp.iij.ad.jp\n * epel: ftp.riken.jp\n * extras: ftp.iij.ad.jp\n * updates: ftp.iij.ad.jp\nResolving Dependencies\n--> Running transaction check\n---> Package NetworkManager.x86_64 1:1.0.6-27.el7 will be updated\n---> Package NetworkManager.x86_64 1:1.0.6-31.el7_2 will be an update\n---> Package NetworkManager-libnm.x86_64 1:1.0.6-27.el7 will be updated\n---> Package NetworkManager-libnm.x86_64 1:1.0.6-31.el7_2 will be an update\n---> Package NetworkManager-team.x86_64 1:1.0.6-27.el7 will be updated\n---> Package NetworkManager-team.x86_64 1:1.0.6-31.el7_2 will be an update\n---> Package NetworkManager-tui.x86_64 1:1.0.6-27.el7 will be updated\n---> Package NetworkManager-tui.x86_64 1:1.0.6-31.el7_2 will be an update\n---> Package avahi-autoipd.x86_64 0:0.6.31-15.el7 will be updated\n---> Package avahi-autoipd.x86_64 0:0.6.31-15.el7_2.1 will be an update\n---> Package avahi-libs.x86_64 0:0.6.31-15.el7 will be updated\n---> Package avahi-libs.x86_64 0:0.6.31-15.el7_2.1 will be an update\n---> Package bash.x86_64 0:4.2.46-19.el7 will be updated\n---> Package bash.x86_64 0:4.2.46-20.el7_2 will be an update\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7 will be updated\n---> Package bind-libs-lite.x86_64 32:9.9.4-29.el7_2.4 will be an update\n---> Package bind-license.noarch 32:9.9.4-29.el7 will be updated\n---> Package bind-license.noarch 32:9.9.4-29.el7_2.4 will be an update\n---> Package ca-certificates.noarch 0:2015.2.4-71.el7 will be updated\n---> Package ca-certificates.noarch 0:2015.2.6-70.1.el7_2 will be an update\n---> Package chkconfig.x86_64 0:1.3.61-5.el7 will be updated\n---> Package chkconfig.x86_64 0:1.3.61-5.el7_2.1 will be an update\n---> Package coreutils.x86_64 0:8.22-15.el7 will be updated\n---> Package coreutils.x86_64 0:8.22-15.el7_2.1 will be an update\n---> Package cronie.x86_64 0:1.4.11-14.el7 will be updated\n---> Package cronie.x86_64 0:1.4.11-14.el7_2.1 will be an update\n---> Package cronie-anacron.x86_64 0:1.4.11-14.el7 will be updated\n---> Package cronie-anacron.x86_64 0:1.4.11-14.el7_2.1 will be an update\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-19.2.el7 will be updated\n---> Package cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2 will be an update\n---> Package dbus.x86_64 1:1.6.12-13.el7 will be updated\n---> Package dbus.x86_64 1:1.6.12-14.el7_2 will be an update\n---> Package dbus-libs.x86_64 1:1.6.12-13.el7 will be updated\n---> Package dbus-libs.x86_64 1:1.6.12-14.el7_2 will be an update\n---> Package device-mapper.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper.x86_64 7:1.02.107-5.el7_2.5 will be an update\n---> Package device-mapper-event.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper-event.x86_64 7:1.02.107-5.el7_2.5 will be an update\n---> Package device-mapper-event-libs.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.5 will be an update\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7 will be updated\n---> Package device-mapper-libs.x86_64 7:1.02.107-5.el7_2.5 will be an update\n---> Package device-mapper-persistent-data.x86_64 0:0.5.5-1.el7 will be updated\n---> Package device-mapper-persistent-data.x86_64 0:0.6.2-1.el7_2 will be an update\n---> Package dnsmasq.x86_64 0:2.66-14.el7_1 will be updated\n---> Package dnsmasq.x86_64 0:2.66-14.el7_2.1 will be an update\n---> Package dracut.x86_64 0:033-359.el7 will be updated\n---> Package dracut.x86_64 0:033-360.el7_2.1 will be an update\n---> Package dracut-config-rescue.x86_64 0:033-359.el7 will be updated\n---> Package dracut-config-rescue.x86_64 0:033-360.el7_2.1 will be an update\n---> Package dracut-network.x86_64 0:033-359.el7 will be updated\n---> Package dracut-network.x86_64 0:033-360.el7_2.1 will be an update\n---> Package gmp.x86_64 1:6.0.0-11.el7 will be updated\n---> Package gmp.x86_64 1:6.0.0-12.el7_1 will be an update\n---> Package gnutls.x86_64 0:3.3.8-12.el7_1.1 will be updated\n---> Package gnutls.x86_64 0:3.3.8-14.el7_2 will be an update\n---> Package grub2.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package grub2-tools.x86_64 1:2.02-0.29.el7.centos will be updated\n---> Package grub2-tools.x86_64 1:2.02-0.34.el7.centos will be an update\n---> Package gssproxy.x86_64 0:0.4.1-7.el7 will be updated\n---> Package gssproxy.x86_64 0:0.4.1-8.el7_2 will be an update\n---> Package initscripts.x86_64 0:9.49.30-1.el7 will be updated\n---> Package initscripts.x86_64 0:9.49.30-1.el7_2.3 will be an update\n---> Package iproute.x86_64 0:3.10.0-54.el7 will be updated\n---> Package iproute.x86_64 0:3.10.0-54.el7_2.1 will be an update\n---> Package kernel.x86_64 0:3.10.0-327.36.3.el7 will be installed\n---> Package kernel-devel.x86_64 0:3.10.0-327.36.3.el7 will be installed\n---> Package kernel-tools.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools.x86_64 0:3.10.0-327.36.3.el7 will be an update\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.el7 will be updated\n---> Package kernel-tools-libs.x86_64 0:3.10.0-327.36.3.el7 will be an update\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7 will be updated\n---> Package kexec-tools.x86_64 0:2.0.7-38.el7_2.1 will be an update\n---> Package kmod.x86_64 0:20-5.el7 will be updated\n---> Package kmod.x86_64 0:20-8.el7_2 will be an update\n---> Package kmod-libs.x86_64 0:20-5.el7 will be updated\n---> Package kmod-libs.x86_64 0:20-8.el7_2 will be an update\n---> Package kpartx.x86_64 0:0.4.9-85.el7 will be updated\n---> Package kpartx.x86_64 0:0.4.9-85.el7_2.6 will be an update\n---> Package krb5-libs.x86_64 0:1.13.2-10.el7 will be updated\n---> Package krb5-libs.x86_64 0:1.13.2-12.el7_2 will be an update\n---> Package libblkid.x86_64 0:2.23.2-26.el7 will be updated\n---> Package libblkid.x86_64 0:2.23.2-26.el7_2.3 will be an update\n---> Package libgudev1.x86_64 0:219-19.el7 will be updated\n---> Package libgudev1.x86_64 0:219-19.el7_2.13 will be an update\n---> Package libmount.x86_64 0:2.23.2-26.el7 will be updated\n---> Package libmount.x86_64 0:2.23.2-26.el7_2.3 will be an update\n---> Package libndp.x86_64 0:1.2-4.el7 will be updated\n---> Package libndp.x86_64 0:1.2-6.el7_2 will be an update\n---> Package libssh2.x86_64 0:1.4.3-10.el7 will be updated\n---> Package libssh2.x86_64 0:1.4.3-10.el7_2.1 will be an update\n---> Package libtalloc.x86_64 0:2.1.2-1.el7 will be updated\n---> Package libtalloc.x86_64 0:2.1.5-1.el7_2 will be an update\n---> Package libteam.x86_64 0:1.17-5.el7 will be updated\n---> Package libteam.x86_64 0:1.17-7.el7_2 will be an update\n---> Package libtevent.x86_64 0:0.9.25-1.el7 will be updated\n---> Package libtevent.x86_64 0:0.9.26-1.el7_2.1 will be an update\n---> Package libuuid.x86_64 0:2.23.2-26.el7 will be updated\n---> Package libuuid.x86_64 0:2.23.2-26.el7_2.3 will be an update\n---> Package libxml2.x86_64 0:2.9.1-5.el7_1.2 will be updated\n---> Package libxml2.x86_64 0:2.9.1-6.el7_2.3 will be an update\n---> Package logrotate.x86_64 0:3.8.6-6.el7 will be updated\n---> Package logrotate.x86_64 0:3.8.6-7.el7_2 will be an update\n---> Package lvm2.x86_64 7:2.02.130-5.el7 will be updated\n---> Package lvm2.x86_64 7:2.02.130-5.el7_2.5 will be an update\n---> Package lvm2-libs.x86_64 7:2.02.130-5.el7 will be updated\n---> Package lvm2-libs.x86_64 7:2.02.130-5.el7_2.5 will be an update\n---> Package mariadb-libs.x86_64 1:5.5.44-2.el7.centos will be updated\n---> Package mariadb-libs.x86_64 1:5.5.50-1.el7_2 will be an update\n---> Package microcode_ctl.x86_64 2:2.1-12.el7 will be updated\n---> Package microcode_ctl.x86_64 2:2.1-12.el7_2.1 will be an update\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7 will be updated\n---> Package nfs-utils.x86_64 1:1.3.0-0.21.el7_2.1 will be an update\n---> Package nspr.x86_64 0:4.10.8-2.el7_1 will be updated\n---> Package nspr.x86_64 0:4.11.0-1.el7_2 will be an update\n---> Package nss.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss.x86_64 0:3.21.0-9.el7_2 will be an update\n---> Package nss-softokn.x86_64 0:3.16.2.3-13.el7_1 will be updated\n---> Package nss-softokn.x86_64 0:3.16.2.3-14.2.el7_2 will be an update\n---> Package nss-softokn-freebl.x86_64 0:3.16.2.3-13.el7_1 will be updated\n---> Package nss-softokn-freebl.x86_64 0:3.16.2.3-14.2.el7_2 will be an update\n---> Package nss-sysinit.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-sysinit.x86_64 0:3.21.0-9.el7_2 will be an update\n---> Package nss-tools.x86_64 0:3.19.1-18.el7 will be updated\n---> Package nss-tools.x86_64 0:3.21.0-9.el7_2 will be an update\n---> Package nss-util.x86_64 0:3.19.1-4.el7_1 will be updated\n---> Package nss-util.x86_64 0:3.21.0-2.2.el7_2 will be an update\n---> Package numactl-libs.x86_64 0:2.0.9-5.el7_1 will be updated\n---> Package numactl-libs.x86_64 0:2.0.9-6.el7_2 will be an update\n---> Package openldap.x86_64 0:2.4.40-8.el7 will be updated\n---> Package openldap.x86_64 0:2.4.40-9.el7_2 will be an update\n---> Package openssh.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh.x86_64 0:6.6.1p1-25.el7_2 will be an update\n---> Package openssh-clients.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-clients.x86_64 0:6.6.1p1-25.el7_2 will be an update\n---> Package openssh-server.x86_64 0:6.6.1p1-22.el7 will be updated\n---> Package openssh-server.x86_64 0:6.6.1p1-25.el7_2 will be an update\n---> Package openssl.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl.x86_64 1:1.0.1e-51.el7_2.7 will be an update\n---> Package openssl-libs.x86_64 1:1.0.1e-42.el7.9 will be updated\n---> Package openssl-libs.x86_64 1:1.0.1e-51.el7_2.7 will be an update\n---> Package pcre.x86_64 0:8.32-15.el7 will be updated\n---> Package pcre.x86_64 0:8.32-15.el7_2.1 will be an update\n---> Package polkit.x86_64 0:0.112-5.el7 will be updated\n---> Package polkit.x86_64 0:0.112-7.el7_2 will be an update\n---> Package procps-ng.x86_64 0:3.3.10-3.el7 will be updated\n---> Package procps-ng.x86_64 0:3.3.10-5.el7_2 will be an update\n---> Package python.x86_64 0:2.7.5-34.el7 will be updated\n---> Package python.x86_64 0:2.7.5-39.el7_2 will be an update\n---> Package python-libs.x86_64 0:2.7.5-34.el7 will be updated\n---> Package python-libs.x86_64 0:2.7.5-39.el7_2 will be an update\n---> Package python-perf.x86_64 0:3.10.0-327.el7 will be updated\n---> Package python-perf.x86_64 0:3.10.0-327.36.3.el7 will be an update\n---> Package python-pyudev.noarch 0:0.15-7.el7 will be updated\n---> Package python-pyudev.noarch 0:0.15-7.el7_2.1 will be an update\n---> Package quota.x86_64 1:4.01-11.el7 will be updated\n---> Package quota.x86_64 1:4.01-11.el7_2.1 will be an update\n---> Package quota-nls.noarch 1:4.01-11.el7 will be updated\n---> Package quota-nls.noarch 1:4.01-11.el7_2.1 will be an update\n---> Package rdma.noarch 0:7.2_4.1_rc6-1.el7 will be updated\n---> Package rdma.noarch 0:7.2_4.1_rc6-2.el7 will be an update\n---> Package rpcbind.x86_64 0:0.2.0-32.el7 will be updated\n---> Package rpcbind.x86_64 0:0.2.0-33.el7_2.1 will be an update\n---> Package selinux-policy.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy.noarch 0:3.13.1-60.el7_2.9 will be an update\n---> Package selinux-policy-devel.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy-devel.noarch 0:3.13.1-60.el7_2.9 will be an update\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7 will be updated\n---> Package selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.9 will be an update\n---> Package sudo.x86_64 0:1.8.6p7-16.el7 will be updated\n---> Package sudo.x86_64 0:1.8.6p7-17.el7_2 will be an update\n---> Package systemd.x86_64 0:219-19.el7 will be updated\n---> Package systemd.x86_64 0:219-19.el7_2.13 will be an update\n---> Package systemd-libs.x86_64 0:219-19.el7 will be updated\n---> Package systemd-libs.x86_64 0:219-19.el7_2.13 will be an update\n---> Package systemd-sysv.x86_64 0:219-19.el7 will be updated\n---> Package systemd-sysv.x86_64 0:219-19.el7_2.13 will be an update\n---> Package teamd.x86_64 0:1.17-5.el7 will be updated\n---> Package teamd.x86_64 0:1.17-7.el7_2 will be an update\n---> Package tuned.noarch 0:2.5.1-4.el7 will be updated\n---> Package tuned.noarch 0:2.5.1-4.el7_2.6 will be an update\n---> Package tzdata.noarch 0:2015g-1.el7 will be updated\n---> Package tzdata.noarch 0:2016h-1.el7 will be an update\n---> Package util-linux.x86_64 0:2.23.2-26.el7 will be updated\n---> Package util-linux.x86_64 0:2.23.2-26.el7_2.3 will be an update\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package                        Arch    Version                  Repository\n                                                                           Size\n================================================================================\nInstalling:\n kernel                         x86_64  3.10.0-327.36.3.el7      updates   33 M\n kernel-devel                   x86_64  3.10.0-327.36.3.el7      updates   11 M\nUpdating:\n NetworkManager                 x86_64  1:1.0.6-31.el7_2         updates  2.0 M\n NetworkManager-libnm           x86_64  1:1.0.6-31.el7_2         updates  498 k\n NetworkManager-team            x86_64  1:1.0.6-31.el7_2         updates  132 k\n NetworkManager-tui             x86_64  1:1.0.6-31.el7_2         updates  212 k\n avahi-autoipd                  x86_64  0.6.31-15.el7_2.1        updates   39 k\n avahi-libs                     x86_64  0.6.31-15.el7_2.1        updates   61 k\n bash                           x86_64  4.2.46-20.el7_2          updates  1.0 M\n bind-libs-lite                 x86_64  32:9.9.4-29.el7_2.4      updates  724 k\n bind-license                   noarch  32:9.9.4-29.el7_2.4      updates   82 k\n ca-certificates                noarch  2015.2.6-70.1.el7_2      updates  428 k\n chkconfig                      x86_64  1.3.61-5.el7_2.1         updates  173 k\n coreutils                      x86_64  8.22-15.el7_2.1          updates  3.2 M\n cronie                         x86_64  1.4.11-14.el7_2.1        updates   90 k\n cronie-anacron                 x86_64  1.4.11-14.el7_2.1        updates   35 k\n cyrus-sasl-lib                 x86_64  2.1.26-20.el7_2          updates  155 k\n dbus                           x86_64  1:1.6.12-14.el7_2        updates  306 k\n dbus-libs                      x86_64  1:1.6.12-14.el7_2        updates  151 k\n device-mapper                  x86_64  7:1.02.107-5.el7_2.5     updates  252 k\n device-mapper-event            x86_64  7:1.02.107-5.el7_2.5     updates  167 k\n device-mapper-event-libs       x86_64  7:1.02.107-5.el7_2.5     updates  169 k\n device-mapper-libs             x86_64  7:1.02.107-5.el7_2.5     updates  305 k\n device-mapper-persistent-data  x86_64  0.6.2-1.el7_2            updates  366 k\n dnsmasq                        x86_64  2.66-14.el7_2.1          updates  229 k\n dracut                         x86_64  033-360.el7_2.1          updates  311 k\n dracut-config-rescue           x86_64  033-360.el7_2.1          updates   50 k\n dracut-network                 x86_64  033-360.el7_2.1          updates   90 k\n gmp                            x86_64  1:6.0.0-12.el7_1         updates  280 k\n gnutls                         x86_64  3.3.8-14.el7_2           updates  662 k\n grub2                          x86_64  1:2.02-0.34.el7.centos   updates  1.5 M\n grub2-tools                    x86_64  1:2.02-0.34.el7.centos   updates  3.3 M\n gssproxy                       x86_64  0.4.1-8.el7_2            updates   84 k\n initscripts                    x86_64  9.49.30-1.el7_2.3        updates  429 k\n iproute                        x86_64  3.10.0-54.el7_2.1        updates  526 k\n kernel-tools                   x86_64  3.10.0-327.36.3.el7      updates  2.4 M\n kernel-tools-libs              x86_64  3.10.0-327.36.3.el7      updates  2.3 M\n kexec-tools                    x86_64  2.0.7-38.el7_2.1         updates  306 k\n kmod                           x86_64  20-8.el7_2               updates  114 k\n kmod-libs                      x86_64  20-8.el7_2               updates   47 k\n kpartx                         x86_64  0.4.9-85.el7_2.6         updates   60 k\n krb5-libs                      x86_64  1.13.2-12.el7_2          updates  843 k\n libblkid                       x86_64  2.23.2-26.el7_2.3        updates  167 k\n libgudev1                      x86_64  219-19.el7_2.13          updates   67 k\n libmount                       x86_64  2.23.2-26.el7_2.3        updates  169 k\n libndp                         x86_64  1.2-6.el7_2              updates   31 k\n libssh2                        x86_64  1.4.3-10.el7_2.1         updates  134 k\n libtalloc                      x86_64  2.1.5-1.el7_2            updates   34 k\n libteam                        x86_64  1.17-7.el7_2             updates   45 k\n libtevent                      x86_64  0.9.26-1.el7_2.1         updates   33 k\n libuuid                        x86_64  2.23.2-26.el7_2.3        updates   74 k\n libxml2                        x86_64  2.9.1-6.el7_2.3          updates  668 k\n logrotate                      x86_64  3.8.6-7.el7_2            updates   66 k\n lvm2                           x86_64  7:2.02.130-5.el7_2.5     updates  1.0 M\n lvm2-libs                      x86_64  7:2.02.130-5.el7_2.5     updates  873 k\n mariadb-libs                   x86_64  1:5.5.50-1.el7_2         updates  755 k\n microcode_ctl                  x86_64  2:2.1-12.el7_2.1         updates  535 k\n nfs-utils                      x86_64  1:1.3.0-0.21.el7_2.1     updates  371 k\n nspr                           x86_64  4.11.0-1.el7_2           updates  126 k\n nss                            x86_64  3.21.0-9.el7_2           updates  850 k\n nss-softokn                    x86_64  3.16.2.3-14.2.el7_2      updates  305 k\n nss-softokn-freebl             x86_64  3.16.2.3-14.2.el7_2      updates  204 k\n nss-sysinit                    x86_64  3.21.0-9.el7_2           updates   55 k\n nss-tools                      x86_64  3.21.0-9.el7_2           updates  487 k\n nss-util                       x86_64  3.21.0-2.2.el7_2         updates   72 k\n numactl-libs                   x86_64  2.0.9-6.el7_2            updates   29 k\n openldap                       x86_64  2.4.40-9.el7_2           updates  348 k\n openssh                        x86_64  6.6.1p1-25.el7_2         updates  435 k\n openssh-clients                x86_64  6.6.1p1-25.el7_2         updates  639 k\n openssh-server                 x86_64  6.6.1p1-25.el7_2         updates  436 k\n openssl                        x86_64  1:1.0.1e-51.el7_2.7      updates  712 k\n openssl-libs                   x86_64  1:1.0.1e-51.el7_2.7      updates  953 k\n pcre                           x86_64  8.32-15.el7_2.1          updates  420 k\n polkit                         x86_64  0.112-7.el7_2            updates  166 k\n procps-ng                      x86_64  3.3.10-5.el7_2           updates  287 k\n python                         x86_64  2.7.5-39.el7_2           updates   89 k\n python-libs                    x86_64  2.7.5-39.el7_2           updates  5.6 M\n python-perf                    x86_64  3.10.0-327.36.3.el7      updates  2.4 M\n python-pyudev                  noarch  0.15-7.el7_2.1           updates   54 k\n quota                          x86_64  1:4.01-11.el7_2.1        updates  178 k\n quota-nls                      noarch  1:4.01-11.el7_2.1        updates   90 k\n rdma                           noarch  7.2_4.1_rc6-2.el7        updates   28 k\n rpcbind                        x86_64  0.2.0-33.el7_2.1         updates   58 k\n selinux-policy                 noarch  3.13.1-60.el7_2.9        updates  377 k\n selinux-policy-devel           noarch  3.13.1-60.el7_2.9        updates  3.3 M\n selinux-policy-targeted        noarch  3.13.1-60.el7_2.9        updates  3.9 M\n sudo                           x86_64  1.8.6p7-17.el7_2         updates  732 k\n systemd                        x86_64  219-19.el7_2.13          updates  5.1 M\n systemd-libs                   x86_64  219-19.el7_2.13          updates  358 k\n systemd-sysv                   x86_64  219-19.el7_2.13          updates   54 k\n teamd                          x86_64  1.17-7.el7_2             updates  109 k\n tuned                          noarch  2.5.1-4.el7_2.6          updates  194 k\n tzdata                         noarch  2016h-1.el7              updates  439 k\n util-linux                     x86_64  2.23.2-26.el7_2.3        updates  1.9 M\n\nTransaction Summary\n================================================================================\nInstall   2 Packages\nUpgrade  92 Packages\n\nTotal download size: 104 M\nDownloading packages:\nDelta RPMs disabled because /usr/bin/applydeltarpm not installed.\n--------------------------------------------------------------------------------\nTotal                                               10 MB/s | 104 MB  00:10     \nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Updating   : bash-4.2.46-20.el7_2.x86_64                                1/186 \n  Updating   : systemd-libs-219-19.el7_2.13.x86_64                        2/186 \n  Updating   : nspr-4.11.0-1.el7_2.x86_64                                 3/186 \n  Updating   : nss-util-3.21.0-2.2.el7_2.x86_64                           4/186 \n  Updating   : 1:dbus-libs-1.6.12-14.el7_2.x86_64                         5/186 \n  Updating   : chkconfig-1.3.61-5.el7_2.1.x86_64                          6/186 \n  Updating   : libuuid-2.23.2-26.el7_2.3.x86_64                           7/186 \n  Updating   : libgudev1-219-19.el7_2.13.x86_64                           8/186 \n  Updating   : iproute-3.10.0-54.el7_2.1.x86_64                           9/186 \n  Updating   : procps-ng-3.3.10-5.el7_2.x86_64                           10/186 \n  Updating   : nss-softokn-freebl-3.16.2.3-14.2.el7_2.x86_64             11/186 \n  Updating   : nss-softokn-3.16.2.3-14.2.el7_2.x86_64                    12/186 \n  Updating   : 1:gmp-6.0.0-12.el7_1.x86_64                               13/186 \n  Updating   : krb5-libs-1.13.2-12.el7_2.x86_64                          14/186 \n  Updating   : 1:openssl-libs-1.0.1e-51.el7_2.7.x86_64                   15/186 \n  Updating   : coreutils-8.22-15.el7_2.1.x86_64                          16/186 \n  Updating   : ca-certificates-2015.2.6-70.1.el7_2.noarch                17/186 \n  Updating   : libblkid-2.23.2-26.el7_2.3.x86_64                         18/186 \n  Updating   : libmount-2.23.2-26.el7_2.3.x86_64                         19/186 \n  Updating   : util-linux-2.23.2-26.el7_2.3.x86_64                       20/186 \n  Updating   : selinux-policy-3.13.1-60.el7_2.9.noarch                   21/186 \n  Updating   : python-libs-2.7.5-39.el7_2.x86_64                         22/186 \n  Updating   : python-2.7.5-39.el7_2.x86_64                              23/186 \n  Updating   : python-perf-3.10.0-327.36.3.el7.x86_64                    24/186 \n  Updating   : python-pyudev-0.15-7.el7_2.1.noarch                       25/186 \n  Updating   : nss-3.21.0-9.el7_2.x86_64                                 26/186 \n  Updating   : nss-sysinit-3.21.0-9.el7_2.x86_64                         27/186 \n  Updating   : 1:NetworkManager-libnm-1.0.6-31.el7_2.x86_64              28/186 \n  Updating   : nss-tools-3.21.0-9.el7_2.x86_64                           29/186 \n  Updating   : avahi-libs-0.6.31-15.el7_2.1.x86_64                       30/186 \n  Updating   : avahi-autoipd-0.6.31-15.el7_2.1.x86_64                    31/186 \n  Updating   : libteam-1.17-7.el7_2.x86_64                               32/186 \n  Updating   : teamd-1.17-7.el7_2.x86_64                                 33/186 \n  Updating   : libtalloc-2.1.5-1.el7_2.x86_64                            34/186 \n  Updating   : libndp-1.2-6.el7_2.x86_64                                 35/186 \n  Updating   : device-mapper-persistent-data-0.6.2-1.el7_2.x86_64        36/186 \n  Updating   : 1:quota-nls-4.01-11.el7_2.1.noarch                        37/186 \n  Updating   : kernel-tools-libs-3.10.0-327.36.3.el7.x86_64              38/186 \n  Updating   : libxml2-2.9.1-6.el7_2.3.x86_64                            39/186 \n  Updating   : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                     40/186 \n  Updating   : openldap-2.4.40-9.el7_2.x86_64                            41/186 \n  Updating   : openssh-6.6.1p1-25.el7_2.x86_64                           42/186 \n  Updating   : kmod-libs-20-8.el7_2.x86_64                               43/186 \n  Updating   : 7:device-mapper-1.02.107-5.el7_2.5.x86_64                 44/186 \n  Updating   : 7:device-mapper-libs-1.02.107-5.el7_2.5.x86_64            45/186 \n  Updating   : kpartx-0.4.9-85.el7_2.6.x86_64                            46/186 \n  Updating   : dracut-033-360.el7_2.1.x86_64                             47/186 \n  Updating   : kmod-20-8.el7_2.x86_64                                    48/186 \n  Updating   : systemd-219-19.el7_2.13.x86_64                            49/186 \n  Updating   : 1:dbus-1.6.12-14.el7_2.x86_64                             50/186 \n  Updating   : systemd-sysv-219-19.el7_2.13.x86_64                       51/186 \n  Updating   : 7:device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64      52/186 \n  Updating   : rpcbind-0.2.0-33.el7_2.1.x86_64                           53/186 \n  Updating   : 1:quota-4.01-11.el7_2.1.x86_64                            54/186 \n  Updating   : 7:device-mapper-event-1.02.107-5.el7_2.5.x86_64           55/186 \n  Updating   : 7:lvm2-libs-2.02.130-5.el7_2.5.x86_64                     56/186 \n  Updating   : dnsmasq-2.66-14.el7_2.1.x86_64                            57/186 \n  Updating   : polkit-0.112-7.el7_2.x86_64                               58/186 \n  Updating   : 1:NetworkManager-1.0.6-31.el7_2.x86_64                    59/186 \n  Updating   : initscripts-9.49.30-1.el7_2.3.x86_64                      60/186 \n  Updating   : gssproxy-0.4.1-8.el7_2.x86_64                             61/186 \n  Updating   : cronie-anacron-1.4.11-14.el7_2.1.x86_64                   62/186 \n  Updating   : cronie-1.4.11-14.el7_2.1.x86_64                           63/186 \n  Updating   : dracut-network-033-360.el7_2.1.x86_64                     64/186 \n  Updating   : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                 65/186 \n  Updating   : 32:bind-license-9.9.4-29.el7_2.4.noarch                   66/186 \n  Updating   : 32:bind-libs-lite-9.9.4-29.el7_2.4.x86_64                 67/186 \n  Updating   : 1:grub2-2.02-0.34.el7.centos.x86_64                       68/186 \n  Updating   : kexec-tools-2.0.7-38.el7_2.1.x86_64                       69/186 \n  Updating   : 1:nfs-utils-1.3.0-0.21.el7_2.1.x86_64                     70/186 \n  Installing : kernel-3.10.0-327.36.3.el7.x86_64                         71/186 \n  Updating   : 1:NetworkManager-team-1.0.6-31.el7_2.x86_64               72/186 \n  Updating   : 1:NetworkManager-tui-1.0.6-31.el7_2.x86_64                73/186 \n  Updating   : 7:lvm2-2.02.130-5.el7_2.5.x86_64                          74/186 \n  Updating   : openssh-server-6.6.1p1-25.el7_2.x86_64                    75/186 \n  Updating   : 2:microcode_ctl-2.1-12.el7_2.1.x86_64                     76/186 \n  Updating   : rdma-7.2_4.1_rc6-2.el7.noarch                             77/186 \n  Updating   : tuned-2.5.1-4.el7_2.6.noarch                              78/186 \n  Updating   : dracut-config-rescue-033-360.el7_2.1.x86_64               79/186 \n  Updating   : openssh-clients-6.6.1p1-25.el7_2.x86_64                   80/186 \n  Updating   : sudo-1.8.6p7-17.el7_2.x86_64                              81/186 \n  Updating   : kernel-tools-3.10.0-327.36.3.el7.x86_64                   82/186 \n  Updating   : libtevent-0.9.26-1.el7_2.1.x86_64                         83/186 \n  Updating   : selinux-policy-devel-3.13.1-60.el7_2.9.noarch             84/186 \n  Updating   : selinux-policy-targeted-3.13.1-60.el7_2.9.noarch          85/186 \n  Updating   : 1:openssl-1.0.1e-51.el7_2.7.x86_64                        86/186 \n  Updating   : logrotate-3.8.6-7.el7_2.x86_64                            87/186 \n  Updating   : libssh2-1.4.3-10.el7_2.1.x86_64                           88/186 \n  Updating   : 1:mariadb-libs-5.5.50-1.el7_2.x86_64                      89/186 \n  Updating   : gnutls-3.3.8-14.el7_2.x86_64                              90/186 \n  Installing : kernel-devel-3.10.0-327.36.3.el7.x86_64                   91/186 \n  Updating   : tzdata-2016h-1.el7.noarch                                 92/186 \n  Updating   : numactl-libs-2.0.9-6.el7_2.x86_64                         93/186 \n  Updating   : pcre-8.32-15.el7_2.1.x86_64                               94/186 \n  Cleanup    : 1:nfs-utils-1.3.0-0.21.el7.x86_64                         95/186 \n  Cleanup    : 7:lvm2-2.02.130-5.el7.x86_64                              96/186 \n  Cleanup    : 1:NetworkManager-tui-1.0.6-27.el7.x86_64                  97/186 \n  Cleanup    : tuned-2.5.1-4.el7.noarch                                  98/186 \n  Cleanup    : rpcbind-0.2.0-32.el7.x86_64                               99/186 \n  Cleanup    : openssh-server-6.6.1p1-22.el7.x86_64                     100/186 \n  Cleanup    : rdma-7.2_4.1_rc6-1.el7.noarch                            101/186 \n  Cleanup    : selinux-policy-targeted-3.13.1-60.el7.noarch             102/186 \n  Cleanup    : 1:grub2-2.02-0.29.el7.centos.x86_64                      103/186 \n  Cleanup    : dracut-config-rescue-033-359.el7.x86_64                  104/186 \n  Cleanup    : selinux-policy-devel-3.13.1-60.el7.noarch                105/186 \n  Cleanup    : 7:lvm2-libs-2.02.130-5.el7.x86_64                        106/186 \n  Cleanup    : 7:device-mapper-event-1.02.107-5.el7.x86_64              107/186 \n  Cleanup    : openssh-clients-6.6.1p1-22.el7.x86_64                    108/186 \n  Cleanup    : kexec-tools-2.0.7-38.el7.x86_64                          109/186 \n  Cleanup    : 1:openssl-1.0.1e-42.el7.9.x86_64                         110/186 \n  Cleanup    : openssh-6.6.1p1-22.el7.x86_64                            111/186 \n  Cleanup    : 32:bind-libs-lite-9.9.4-29.el7.x86_64                    112/186 \n  Cleanup    : 1:NetworkManager-team-1.0.6-27.el7.x86_64                113/186 \n  Cleanup    : dracut-network-033-359.el7.x86_64                        114/186 \n  Cleanup    : 1:NetworkManager-1.0.6-27.el7.x86_64                     115/186 \n  Cleanup    : 1:NetworkManager-libnm-1.0.6-27.el7.x86_64               116/186 \n  Cleanup    : dnsmasq-2.66-14.el7_1.x86_64                             117/186 \n  Cleanup    : polkit-0.112-5.el7.x86_64                                118/186 \n  Cleanup    : teamd-1.17-5.el7.x86_64                                  119/186 \n  Cleanup    : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                120/186 \n  Cleanup    : gssproxy-0.4.1-7.el7.x86_64                              121/186 \n  Cleanup    : 1:quota-4.01-11.el7.x86_64                               122/186 \n  Cleanup    : initscripts-9.49.30-1.el7.x86_64                         123/186 \n  Cleanup    : cronie-1.4.11-14.el7.x86_64                              124/186 \n  Cleanup    : cronie-anacron-1.4.11-14.el7.x86_64                      125/186 \n  Cleanup    : systemd-sysv-219-19.el7.x86_64                           126/186 \n  Cleanup    : selinux-policy-3.13.1-60.el7.noarch                      127/186 \n  Cleanup    : avahi-autoipd-0.6.31-15.el7.x86_64                       128/186 \n  Cleanup    : python-perf-3.10.0-327.el7.x86_64                        129/186 \n  Cleanup    : kernel-tools-3.10.0-327.el7.x86_64                       130/186 \n  Cleanup    : logrotate-3.8.6-6.el7.x86_64                             131/186 \n  Cleanup    : 2:microcode_ctl-2.1-12.el7.x86_64                        132/186 \n  Cleanup    : sudo-1.8.6p7-16.el7.x86_64                               133/186 \n  Cleanup    : python-pyudev-0.15-7.el7.noarch                          134/186 \n  Cleanup    : openldap-2.4.40-8.el7.x86_64                             135/186 \n  Cleanup    : nss-tools-3.19.1-18.el7.x86_64                           136/186 \n  Cleanup    : nss-sysinit-3.19.1-18.el7.x86_64                         137/186 \n  Cleanup    : nss-3.19.1-18.el7.x86_64                                 138/186 \n  Cleanup    : nss-softokn-3.16.2.3-13.el7_1.x86_64                     139/186 \n  Cleanup    : nss-util-3.19.1-4.el7_1.x86_64                           140/186 \n  Cleanup    : nss-softokn-freebl-3.16.2.3-13.el7_1.x86_64              141/186 \n  Cleanup    : python-2.7.5-34.el7.x86_64                               142/186 \n  Cleanup    : python-libs-2.7.5-34.el7.x86_64                          143/186 \n  Cleanup    : avahi-libs-0.6.31-15.el7.x86_64                          144/186 \n  Cleanup    : iproute-3.10.0-54.el7.x86_64                             145/186 \n  Cleanup    : libgudev1-219-19.el7.x86_64                              146/186 \n  Cleanup    : 7:device-mapper-event-libs-1.02.107-5.el7.x86_64         147/186 \n  Cleanup    : kpartx-0.4.9-85.el7.x86_64                               148/186 \n  Cleanup    : 7:device-mapper-libs-1.02.107-5.el7.x86_64               149/186 \n  Cleanup    : 7:device-mapper-1.02.107-5.el7.x86_64                    150/186 \n  Cleanup    : kmod-20-5.el7.x86_64                                     151/186 \n  Cleanup    : dracut-033-359.el7.x86_64                                152/186 \n  Cleanup    : 1:dbus-1.6.12-13.el7.x86_64                              153/186 \n  Cleanup    : systemd-219-19.el7.x86_64                                154/186 \n  Cleanup    : util-linux-2.23.2-26.el7.x86_64                          155/186 \n  Cleanup    : libmount-2.23.2-26.el7.x86_64                            156/186 \n  Cleanup    : libblkid-2.23.2-26.el7.x86_64                            157/186 \n  Cleanup    : procps-ng-3.3.10-3.el7.x86_64                            158/186 \n  Cleanup    : 1:mariadb-libs-5.5.44-2.el7.centos.x86_64                159/186 \n  Cleanup    : libtevent-0.9.25-1.el7.x86_64                            160/186 \n  Cleanup    : libssh2-1.4.3-10.el7.x86_64                              161/186 \n  Cleanup    : ca-certificates-2015.2.4-71.el7.noarch                   162/186 \n  Cleanup    : krb5-libs-1.13.2-10.el7.x86_64                           163/186 \n  Cleanup    : coreutils-8.22-15.el7.x86_64                             164/186 \n  Cleanup    : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                    165/186 \n  Cleanup    : gnutls-3.3.8-12.el7_1.1.x86_64                           166/186 \n  Cleanup    : 1:quota-nls-4.01-11.el7.noarch                           167/186 \n  Cleanup    : 32:bind-license-9.9.4-29.el7.noarch                      168/186 \n  Cleanup    : tzdata-2015g-1.el7.noarch                                169/186 \n  Cleanup    : 1:gmp-6.0.0-11.el7.x86_64                                170/186 \n  Cleanup    : bash-4.2.46-19.el7.x86_64                                171/186 \n  Cleanup    : libtalloc-2.1.2-1.el7.x86_64                             172/186 \n  Cleanup    : systemd-libs-219-19.el7.x86_64                           173/186 \n  Cleanup    : libuuid-2.23.2-26.el7.x86_64                             174/186 \n  Cleanup    : kmod-libs-20-5.el7.x86_64                                175/186 \n  Cleanup    : chkconfig-1.3.61-5.el7.x86_64                            176/186 \n  Cleanup    : 1:dbus-libs-1.6.12-13.el7.x86_64                         177/186 \n  Cleanup    : nspr-4.10.8-2.el7_1.x86_64                               178/186 \n  Cleanup    : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                    179/186 \n  Cleanup    : kernel-tools-libs-3.10.0-327.el7.x86_64                  180/186 \n  Cleanup    : libteam-1.17-5.el7.x86_64                                181/186 \n  Cleanup    : libndp-1.2-4.el7.x86_64                                  182/186 \n  Cleanup    : libxml2-2.9.1-5.el7_1.2.x86_64                           183/186 \n  Cleanup    : device-mapper-persistent-data-0.5.5-1.el7.x86_64         184/186 \n  Cleanup    : numactl-libs-2.0.9-5.el7_1.x86_64                        185/186 \n  Cleanup    : pcre-8.32-15.el7.x86_64                                  186/186 \nvboxadd.sh: Building Guest Additions kernel modules.\n  Verifying  : openssh-server-6.6.1p1-25.el7_2.x86_64                     1/186 \n  Verifying  : 32:bind-license-9.9.4-29.el7_2.4.noarch                    2/186 \n  Verifying  : dnsmasq-2.66-14.el7_2.1.x86_64                             3/186 \n  Verifying  : iproute-3.10.0-54.el7_2.1.x86_64                           4/186 \n  Verifying  : sudo-1.8.6p7-17.el7_2.x86_64                               5/186 \n  Verifying  : nspr-4.11.0-1.el7_2.x86_64                                 6/186 \n  Verifying  : util-linux-2.23.2-26.el7_2.3.x86_64                        7/186 \n  Verifying  : pcre-8.32-15.el7_2.1.x86_64                                8/186 \n  Verifying  : selinux-policy-devel-3.13.1-60.el7_2.9.noarch              9/186 \n  Verifying  : gnutls-3.3.8-14.el7_2.x86_64                              10/186 \n  Verifying  : ca-certificates-2015.2.6-70.1.el7_2.noarch                11/186 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7_2.1.x86_64                     12/186 \n  Verifying  : nss-util-3.21.0-2.2.el7_2.x86_64                          13/186 \n  Verifying  : systemd-sysv-219-19.el7_2.13.x86_64                       14/186 \n  Verifying  : numactl-libs-2.0.9-6.el7_2.x86_64                         15/186 \n  Verifying  : cronie-anacron-1.4.11-14.el7_2.1.x86_64                   16/186 \n  Verifying  : 1:NetworkManager-team-1.0.6-31.el7_2.x86_64               17/186 \n  Verifying  : dracut-config-rescue-033-360.el7_2.1.x86_64               18/186 \n  Verifying  : libuuid-2.23.2-26.el7_2.3.x86_64                          19/186 \n  Verifying  : coreutils-8.22-15.el7_2.1.x86_64                          20/186 \n  Verifying  : kpartx-0.4.9-85.el7_2.6.x86_64                            21/186 \n  Verifying  : selinux-policy-3.13.1-60.el7_2.9.noarch                   22/186 \n  Verifying  : kernel-3.10.0-327.36.3.el7.x86_64                         23/186 \n  Verifying  : 7:device-mapper-1.02.107-5.el7_2.5.x86_64                 24/186 \n  Verifying  : 1:NetworkManager-tui-1.0.6-31.el7_2.x86_64                25/186 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7_2.5.x86_64            26/186 \n  Verifying  : 2:microcode_ctl-2.1-12.el7_2.1.x86_64                     27/186 \n  Verifying  : rpcbind-0.2.0-33.el7_2.1.x86_64                           28/186 \n  Verifying  : 7:lvm2-libs-2.02.130-5.el7_2.5.x86_64                     29/186 \n  Verifying  : openldap-2.4.40-9.el7_2.x86_64                            30/186 \n  Verifying  : initscripts-9.49.30-1.el7_2.3.x86_64                      31/186 \n  Verifying  : 1:openssl-1.0.1e-51.el7_2.7.x86_64                        32/186 \n  Verifying  : avahi-libs-0.6.31-15.el7_2.1.x86_64                       33/186 \n  Verifying  : 7:lvm2-2.02.130-5.el7_2.5.x86_64                          34/186 \n  Verifying  : libblkid-2.23.2-26.el7_2.3.x86_64                         35/186 \n  Verifying  : kmod-libs-20-8.el7_2.x86_64                               36/186 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7_2.4.x86_64                 37/186 \n  Verifying  : python-perf-3.10.0-327.36.3.el7.x86_64                    38/186 \n  Verifying  : krb5-libs-1.13.2-12.el7_2.x86_64                          39/186 \n  Verifying  : python-libs-2.7.5-39.el7_2.x86_64                         40/186 \n  Verifying  : bash-4.2.46-20.el7_2.x86_64                               41/186 \n  Verifying  : libssh2-1.4.3-10.el7_2.1.x86_64                           42/186 \n  Verifying  : cyrus-sasl-lib-2.1.26-20.el7_2.x86_64                     43/186 \n  Verifying  : nss-tools-3.21.0-9.el7_2.x86_64                           44/186 \n  Verifying  : 7:device-mapper-event-libs-1.02.107-5.el7_2.5.x86_64      45/186 \n  Verifying  : libxml2-2.9.1-6.el7_2.3.x86_64                            46/186 \n  Verifying  : chkconfig-1.3.61-5.el7_2.1.x86_64                         47/186 \n  Verifying  : procps-ng-3.3.10-5.el7_2.x86_64                           48/186 \n  Verifying  : avahi-autoipd-0.6.31-15.el7_2.1.x86_64                    49/186 \n  Verifying  : 1:grub2-2.02-0.34.el7.centos.x86_64                       50/186 \n  Verifying  : kernel-tools-libs-3.10.0-327.36.3.el7.x86_64              51/186 \n  Verifying  : systemd-libs-219-19.el7_2.13.x86_64                       52/186 \n  Verifying  : python-2.7.5-39.el7_2.x86_64                              53/186 \n  Verifying  : kexec-tools-2.0.7-38.el7_2.1.x86_64                       54/186 \n  Verifying  : libtevent-0.9.26-1.el7_2.1.x86_64                         55/186 \n  Verifying  : 1:quota-nls-4.01-11.el7_2.1.noarch                        56/186 \n  Verifying  : logrotate-3.8.6-7.el7_2.x86_64                            57/186 \n  Verifying  : 1:mariadb-libs-5.5.50-1.el7_2.x86_64                      58/186 \n  Verifying  : 1:grub2-tools-2.02-0.34.el7.centos.x86_64                 59/186 \n  Verifying  : kernel-tools-3.10.0-327.36.3.el7.x86_64                   60/186 \n  Verifying  : kernel-devel-3.10.0-327.36.3.el7.x86_64                   61/186 \n  Verifying  : gssproxy-0.4.1-8.el7_2.x86_64                             62/186 \n  Verifying  : 1:gmp-6.0.0-12.el7_1.x86_64                               63/186 \n  Verifying  : dracut-network-033-360.el7_2.1.x86_64                     64/186 \n  Verifying  : nss-3.21.0-9.el7_2.x86_64                                 65/186 \n  Verifying  : nss-softokn-3.16.2.3-14.2.el7_2.x86_64                    66/186 \n  Verifying  : nss-softokn-freebl-3.16.2.3-14.2.el7_2.x86_64             67/186 \n  Verifying  : tzdata-2016h-1.el7.noarch                                 68/186 \n  Verifying  : dracut-033-360.el7_2.1.x86_64                             69/186 \n  Verifying  : device-mapper-persistent-data-0.6.2-1.el7_2.x86_64        70/186 \n  Verifying  : 1:openssl-libs-1.0.1e-51.el7_2.7.x86_64                   71/186 \n  Verifying  : nss-sysinit-3.21.0-9.el7_2.x86_64                         72/186 \n  Verifying  : python-pyudev-0.15-7.el7_2.1.noarch                       73/186 \n  Verifying  : 1:dbus-1.6.12-14.el7_2.x86_64                             74/186 \n  Verifying  : 1:NetworkManager-libnm-1.0.6-31.el7_2.x86_64              75/186 \n  Verifying  : libgudev1-219-19.el7_2.13.x86_64                          76/186 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7_2.9.noarch          77/186 \n  Verifying  : teamd-1.17-7.el7_2.x86_64                                 78/186 \n  Verifying  : polkit-0.112-7.el7_2.x86_64                               79/186 \n  Verifying  : 1:quota-4.01-11.el7_2.1.x86_64                            80/186 \n  Verifying  : openssh-6.6.1p1-25.el7_2.x86_64                           81/186 \n  Verifying  : libndp-1.2-6.el7_2.x86_64                                 82/186 \n  Verifying  : kmod-20-8.el7_2.x86_64                                    83/186 \n  Verifying  : rdma-7.2_4.1_rc6-2.el7.noarch                             84/186 \n  Verifying  : libtalloc-2.1.5-1.el7_2.x86_64                            85/186 \n  Verifying  : systemd-219-19.el7_2.13.x86_64                            86/186 \n  Verifying  : 7:device-mapper-event-1.02.107-5.el7_2.5.x86_64           87/186 \n  Verifying  : cronie-1.4.11-14.el7_2.1.x86_64                           88/186 \n  Verifying  : 1:NetworkManager-1.0.6-31.el7_2.x86_64                    89/186 \n  Verifying  : openssh-clients-6.6.1p1-25.el7_2.x86_64                   90/186 \n  Verifying  : tuned-2.5.1-4.el7_2.6.noarch                              91/186 \n  Verifying  : 1:dbus-libs-1.6.12-14.el7_2.x86_64                        92/186 \n  Verifying  : libteam-1.17-7.el7_2.x86_64                               93/186 \n  Verifying  : libmount-2.23.2-26.el7_2.3.x86_64                         94/186 \n  Verifying  : dracut-config-rescue-033-359.el7.x86_64                   95/186 \n  Verifying  : gnutls-3.3.8-12.el7_1.1.x86_64                            96/186 \n  Verifying  : openssh-6.6.1p1-22.el7.x86_64                             97/186 \n  Verifying  : 7:device-mapper-event-libs-1.02.107-5.el7.x86_64          98/186 \n  Verifying  : polkit-0.112-5.el7.x86_64                                 99/186 \n  Verifying  : avahi-autoipd-0.6.31-15.el7.x86_64                       100/186 \n  Verifying  : 1:NetworkManager-1.0.6-27.el7.x86_64                     101/186 \n  Verifying  : selinux-policy-3.13.1-60.el7.noarch                      102/186 \n  Verifying  : systemd-libs-219-19.el7.x86_64                           103/186 \n  Verifying  : libblkid-2.23.2-26.el7.x86_64                            104/186 \n  Verifying  : libndp-1.2-4.el7.x86_64                                  105/186 \n  Verifying  : device-mapper-persistent-data-0.5.5-1.el7.x86_64         106/186 \n  Verifying  : 1:quota-4.01-11.el7.x86_64                               107/186 \n  Verifying  : kpartx-0.4.9-85.el7.x86_64                               108/186 \n  Verifying  : krb5-libs-1.13.2-10.el7.x86_64                           109/186 \n  Verifying  : python-pyudev-0.15-7.el7.noarch                          110/186 \n  Verifying  : sudo-1.8.6p7-16.el7.x86_64                               111/186 \n  Verifying  : nss-util-3.19.1-4.el7_1.x86_64                           112/186 \n  Verifying  : cronie-1.4.11-14.el7.x86_64                              113/186 \n  Verifying  : rdma-7.2_4.1_rc6-1.el7.noarch                            114/186 \n  Verifying  : 1:dbus-1.6.12-13.el7.x86_64                              115/186 \n  Verifying  : kexec-tools-2.0.7-38.el7.x86_64                          116/186 \n  Verifying  : rpcbind-0.2.0-32.el7.x86_64                              117/186 \n  Verifying  : kernel-tools-3.10.0-327.el7.x86_64                       118/186 \n  Verifying  : procps-ng-3.3.10-3.el7.x86_64                            119/186 \n  Verifying  : 7:lvm2-libs-2.02.130-5.el7.x86_64                        120/186 \n  Verifying  : nss-softokn-3.16.2.3-13.el7_1.x86_64                     121/186 \n  Verifying  : 1:NetworkManager-tui-1.0.6-27.el7.x86_64                 122/186 \n  Verifying  : python-2.7.5-34.el7.x86_64                               123/186 \n  Verifying  : libuuid-2.23.2-26.el7.x86_64                             124/186 \n  Verifying  : logrotate-3.8.6-6.el7.x86_64                             125/186 \n  Verifying  : 1:grub2-tools-2.02-0.29.el7.centos.x86_64                126/186 \n  Verifying  : systemd-sysv-219-19.el7.x86_64                           127/186 \n  Verifying  : libgudev1-219-19.el7.x86_64                              128/186 \n  Verifying  : tzdata-2015g-1.el7.noarch                                129/186 \n  Verifying  : nss-sysinit-3.19.1-18.el7.x86_64                         130/186 \n  Verifying  : libmount-2.23.2-26.el7.x86_64                            131/186 \n  Verifying  : 1:gmp-6.0.0-11.el7.x86_64                                132/186 \n  Verifying  : 7:device-mapper-event-1.02.107-5.el7.x86_64              133/186 \n  Verifying  : 1:NetworkManager-team-1.0.6-27.el7.x86_64                134/186 \n  Verifying  : kernel-tools-libs-3.10.0-327.el7.x86_64                  135/186 \n  Verifying  : cronie-anacron-1.4.11-14.el7.x86_64                      136/186 \n  Verifying  : iproute-3.10.0-54.el7.x86_64                             137/186 \n  Verifying  : 1:quota-nls-4.01-11.el7.noarch                           138/186 \n  Verifying  : teamd-1.17-5.el7.x86_64                                  139/186 \n  Verifying  : 1:grub2-2.02-0.29.el7.centos.x86_64                      140/186 \n  Verifying  : ca-certificates-2015.2.4-71.el7.noarch                   141/186 \n  Verifying  : util-linux-2.23.2-26.el7.x86_64                          142/186 \n  Verifying  : dnsmasq-2.66-14.el7_1.x86_64                             143/186 \n  Verifying  : 1:openssl-1.0.1e-42.el7.9.x86_64                         144/186 \n  Verifying  : 7:lvm2-2.02.130-5.el7.x86_64                             145/186 \n  Verifying  : tuned-2.5.1-4.el7.noarch                                 146/186 \n  Verifying  : dracut-network-033-359.el7.x86_64                        147/186 \n  Verifying  : bash-4.2.46-19.el7.x86_64                                148/186 \n  Verifying  : python-libs-2.7.5-34.el7.x86_64                          149/186 \n  Verifying  : selinux-policy-targeted-3.13.1-60.el7.noarch             150/186 \n  Verifying  : libtevent-0.9.25-1.el7.x86_64                            151/186 \n  Verifying  : 1:mariadb-libs-5.5.44-2.el7.centos.x86_64                152/186 \n  Verifying  : cyrus-sasl-lib-2.1.26-19.2.el7.x86_64                    153/186 \n  Verifying  : pcre-8.32-15.el7.x86_64                                  154/186 \n  Verifying  : chkconfig-1.3.61-5.el7.x86_64                            155/186 \n  Verifying  : nss-softokn-freebl-3.16.2.3-13.el7_1.x86_64              156/186 \n  Verifying  : initscripts-9.49.30-1.el7.x86_64                         157/186 \n  Verifying  : nss-tools-3.19.1-18.el7.x86_64                           158/186 \n  Verifying  : numactl-libs-2.0.9-5.el7_1.x86_64                        159/186 \n  Verifying  : 1:openssl-libs-1.0.1e-42.el7.9.x86_64                    160/186 \n  Verifying  : 32:bind-libs-lite-9.9.4-29.el7.x86_64                    161/186 \n  Verifying  : 2:microcode_ctl-2.1-12.el7.x86_64                        162/186 \n  Verifying  : 7:device-mapper-1.02.107-5.el7.x86_64                    163/186 \n  Verifying  : python-perf-3.10.0-327.el7.x86_64                        164/186 \n  Verifying  : 32:bind-license-9.9.4-29.el7.noarch                      165/186 \n  Verifying  : libteam-1.17-5.el7.x86_64                                166/186 \n  Verifying  : coreutils-8.22-15.el7.x86_64                             167/186 \n  Verifying  : libtalloc-2.1.2-1.el7.x86_64                             168/186 \n  Verifying  : nss-3.19.1-18.el7.x86_64                                 169/186 \n  Verifying  : kmod-20-5.el7.x86_64                                     170/186 \n  Verifying  : kmod-libs-20-5.el7.x86_64                                171/186 \n  Verifying  : 1:nfs-utils-1.3.0-0.21.el7.x86_64                        172/186 \n  Verifying  : systemd-219-19.el7.x86_64                                173/186 \n  Verifying  : dracut-033-359.el7.x86_64                                174/186 \n  Verifying  : 1:dbus-libs-1.6.12-13.el7.x86_64                         175/186 \n  Verifying  : avahi-libs-0.6.31-15.el7.x86_64                          176/186 \n  Verifying  : openssh-clients-6.6.1p1-22.el7.x86_64                    177/186 \n  Verifying  : 1:NetworkManager-libnm-1.0.6-27.el7.x86_64               178/186 \n  Verifying  : openssh-server-6.6.1p1-22.el7.x86_64                     179/186 \n  Verifying  : gssproxy-0.4.1-7.el7.x86_64                              180/186 \n  Verifying  : selinux-policy-devel-3.13.1-60.el7.noarch                181/186 \n  Verifying  : libxml2-2.9.1-5.el7_1.2.x86_64                           182/186 \n  Verifying  : openldap-2.4.40-8.el7.x86_64                             183/186 \n  Verifying  : libssh2-1.4.3-10.el7.x86_64                              184/186 \n  Verifying  : 7:device-mapper-libs-1.02.107-5.el7.x86_64               185/186 \n  Verifying  : nspr-4.10.8-2.el7_1.x86_64                               186/186 \n\nInstalled:\n  kernel.x86_64 0:3.10.0-327.36.3.el7 kernel-devel.x86_64 0:3.10.0-327.36.3.el7\n\nUpdated:\n  NetworkManager.x86_64 1:1.0.6-31.el7_2                                        \n  NetworkManager-libnm.x86_64 1:1.0.6-31.el7_2                                  \n  NetworkManager-team.x86_64 1:1.0.6-31.el7_2                                   \n  NetworkManager-tui.x86_64 1:1.0.6-31.el7_2                                    \n  avahi-autoipd.x86_64 0:0.6.31-15.el7_2.1                                      \n  avahi-libs.x86_64 0:0.6.31-15.el7_2.1                                         \n  bash.x86_64 0:4.2.46-20.el7_2                                                 \n  bind-libs-lite.x86_64 32:9.9.4-29.el7_2.4                                     \n  bind-license.noarch 32:9.9.4-29.el7_2.4                                       \n  ca-certificates.noarch 0:2015.2.6-70.1.el7_2                                  \n  chkconfig.x86_64 0:1.3.61-5.el7_2.1                                           \n  coreutils.x86_64 0:8.22-15.el7_2.1                                            \n  cronie.x86_64 0:1.4.11-14.el7_2.1                                             \n  cronie-anacron.x86_64 0:1.4.11-14.el7_2.1                                     \n  cyrus-sasl-lib.x86_64 0:2.1.26-20.el7_2                                       \n  dbus.x86_64 1:1.6.12-14.el7_2                                                 \n  dbus-libs.x86_64 1:1.6.12-14.el7_2                                            \n  device-mapper.x86_64 7:1.02.107-5.el7_2.5                                     \n  device-mapper-event.x86_64 7:1.02.107-5.el7_2.5                               \n  device-mapper-event-libs.x86_64 7:1.02.107-5.el7_2.5                          \n  device-mapper-libs.x86_64 7:1.02.107-5.el7_2.5                                \n  device-mapper-persistent-data.x86_64 0:0.6.2-1.el7_2                          \n  dnsmasq.x86_64 0:2.66-14.el7_2.1                                              \n  dracut.x86_64 0:033-360.el7_2.1                                               \n  dracut-config-rescue.x86_64 0:033-360.el7_2.1                                 \n  dracut-network.x86_64 0:033-360.el7_2.1                                       \n  gmp.x86_64 1:6.0.0-12.el7_1                                                   \n  gnutls.x86_64 0:3.3.8-14.el7_2                                                \n  grub2.x86_64 1:2.02-0.34.el7.centos                                           \n  grub2-tools.x86_64 1:2.02-0.34.el7.centos                                     \n  gssproxy.x86_64 0:0.4.1-8.el7_2                                               \n  initscripts.x86_64 0:9.49.30-1.el7_2.3                                        \n  iproute.x86_64 0:3.10.0-54.el7_2.1                                            \n  kernel-tools.x86_64 0:3.10.0-327.36.3.el7                                     \n  kernel-tools-libs.x86_64 0:3.10.0-327.36.3.el7                                \n  kexec-tools.x86_64 0:2.0.7-38.el7_2.1                                         \n  kmod.x86_64 0:20-8.el7_2                                                      \n  kmod-libs.x86_64 0:20-8.el7_2                                                 \n  kpartx.x86_64 0:0.4.9-85.el7_2.6                                              \n  krb5-libs.x86_64 0:1.13.2-12.el7_2                                            \n  libblkid.x86_64 0:2.23.2-26.el7_2.3                                           \n  libgudev1.x86_64 0:219-19.el7_2.13                                            \n  libmount.x86_64 0:2.23.2-26.el7_2.3                                           \n  libndp.x86_64 0:1.2-6.el7_2                                                   \n  libssh2.x86_64 0:1.4.3-10.el7_2.1                                             \n  libtalloc.x86_64 0:2.1.5-1.el7_2                                              \n  libteam.x86_64 0:1.17-7.el7_2                                                 \n  libtevent.x86_64 0:0.9.26-1.el7_2.1                                           \n  libuuid.x86_64 0:2.23.2-26.el7_2.3                                            \n  libxml2.x86_64 0:2.9.1-6.el7_2.3                                              \n  logrotate.x86_64 0:3.8.6-7.el7_2                                              \n  lvm2.x86_64 7:2.02.130-5.el7_2.5                                              \n  lvm2-libs.x86_64 7:2.02.130-5.el7_2.5                                         \n  mariadb-libs.x86_64 1:5.5.50-1.el7_2                                          \n  microcode_ctl.x86_64 2:2.1-12.el7_2.1                                         \n  nfs-utils.x86_64 1:1.3.0-0.21.el7_2.1                                         \n  nspr.x86_64 0:4.11.0-1.el7_2                                                  \n  nss.x86_64 0:3.21.0-9.el7_2                                                   \n  nss-softokn.x86_64 0:3.16.2.3-14.2.el7_2                                      \n  nss-softokn-freebl.x86_64 0:3.16.2.3-14.2.el7_2                               \n  nss-sysinit.x86_64 0:3.21.0-9.el7_2                                           \n  nss-tools.x86_64 0:3.21.0-9.el7_2                                             \n  nss-util.x86_64 0:3.21.0-2.2.el7_2                                            \n  numactl-libs.x86_64 0:2.0.9-6.el7_2                                           \n  openldap.x86_64 0:2.4.40-9.el7_2                                              \n  openssh.x86_64 0:6.6.1p1-25.el7_2                                             \n  openssh-clients.x86_64 0:6.6.1p1-25.el7_2                                     \n  openssh-server.x86_64 0:6.6.1p1-25.el7_2                                      \n  openssl.x86_64 1:1.0.1e-51.el7_2.7                                            \n  openssl-libs.x86_64 1:1.0.1e-51.el7_2.7                                       \n  pcre.x86_64 0:8.32-15.el7_2.1                                                 \n  polkit.x86_64 0:0.112-7.el7_2                                                 \n  procps-ng.x86_64 0:3.3.10-5.el7_2                                             \n  python.x86_64 0:2.7.5-39.el7_2                                                \n  python-libs.x86_64 0:2.7.5-39.el7_2                                           \n  python-perf.x86_64 0:3.10.0-327.36.3.el7                                      \n  python-pyudev.noarch 0:0.15-7.el7_2.1                                         \n  quota.x86_64 1:4.01-11.el7_2.1                                                \n  quota-nls.noarch 1:4.01-11.el7_2.1                                            \n  rdma.noarch 0:7.2_4.1_rc6-2.el7                                               \n  rpcbind.x86_64 0:0.2.0-33.el7_2.1                                             \n  selinux-policy.noarch 0:3.13.1-60.el7_2.9                                     \n  selinux-policy-devel.noarch 0:3.13.1-60.el7_2.9                               \n  selinux-policy-targeted.noarch 0:3.13.1-60.el7_2.9                            \n  sudo.x86_64 0:1.8.6p7-17.el7_2                                                \n  systemd.x86_64 0:219-19.el7_2.13                                              \n  systemd-libs.x86_64 0:219-19.el7_2.13                                         \n  systemd-sysv.x86_64 0:219-19.el7_2.13                                         \n  teamd.x86_64 0:1.17-7.el7_2                                                   \n  tuned.noarch 0:2.5.1-4.el7_2.6                                                \n  tzdata.noarch 0:2016h-1.el7                                                   \n  util-linux.x86_64 0:2.23.2-26.el7_2.3                                         \n\nComplete!\n"]}

TASK [CentOS7.2 : check CentOS version] ****************************************
changed: [host] => {"changed": true, "cmd": ["cat", "/etc/redhat-release"], "delta": "0:00:00.003325", "end": "2016-11-29 06:33:46.599010", "rc": 0, "start": "2016-11-29 06:33:46.595685", "stderr": "", "stdout": "CentOS Linux release 7.2.1511 (Core) ", "stdout_lines": ["CentOS Linux release 7.2.1511 (Core) "], "warnings": []}

TASK [CentOS7.2 : set LANG] ****************************************************
changed: [host] => {"changed": true, "cmd": ["localectl", "set-locale", "LANG=ja_JP.UTF-8"], "delta": "0:00:00.112148", "end": "2016-11-29 06:33:46.888318", "rc": 0, "start": "2016-11-29 06:33:46.776170", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}

TASK [CentOS7.2 : set keymap] **************************************************
changed: [host] => {"changed": true, "cmd": ["localectl", "set-keymap", "jp106"], "delta": "0:00:00.009940", "end": "2016-11-29 06:33:47.051681", "rc": 0, "start": "2016-11-29 06:33:47.041741", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}

TASK [CentOS7.2 : set timezone] ************************************************
changed: [host] => {"changed": true, "cmd": ["timedatectl", "set-timezone", "Asia/Tokyo"], "delta": "9:00:00.029756", "end": "2016-11-29 15:33:47.309770", "rc": 0, "start": "2016-11-29 06:33:47.280014", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}

TASK [CentOS7.2 : install chrony] **********************************************
changed: [host] => {"changed": true, "msg": "", "rc": 0, "results": ["Loaded plugins: fastestmirror\nLoading mirror speeds from cached hostfile\n * base: ftp.iij.ad.jp\n * epel: ftp.riken.jp\n * extras: ftp.iij.ad.jp\n * updates: ftp.iij.ad.jp\nResolving Dependencies\n--> Running transaction check\n---> Package chrony.x86_64 0:2.1.1-1.el7.centos will be installed\n--> Finished Dependency Resolution\n\nDependencies Resolved\n\n================================================================================\n Package        Arch           Version                       Repository    Size\n================================================================================\nInstalling:\n chrony         x86_64         2.1.1-1.el7.centos            base         280 k\n\nTransaction Summary\n================================================================================\nInstall  1 Package\n\nTotal download size: 280 k\nInstalled size: 468 k\nDownloading packages:\nRunning transaction check\nRunning transaction test\nTransaction test succeeded\nRunning transaction\n  Installing : chrony-2.1.1-1.el7.centos.x86_64                             1/1 \n  Verifying  : chrony-2.1.1-1.el7.centos.x86_64                             1/1 \n\nInstalled:\n  chrony.x86_64 0:2.1.1-1.el7.centos                                            \n\nComplete!\n"]}

TASK [CentOS7.2 : start chrony] ************************************************
changed: [host] => {"changed": true, "enabled": true, "name": "chronyd", "state": "started", "status": {"ActiveEnterTimestampMonotonic": "0", "ActiveExitTimestampMonotonic": "0", "ActiveState": "inactive", "After": "ntpdate.service basic.target system.slice ntpd.service sntp.service systemd-journald.socket", "AllowIsolate": "no", "AssertResult": "no", "AssertTimestampMonotonic": "0", "Before": "multi-user.target shutdown.target", "BlockIOAccounting": "no", "BlockIOWeight": "18446744073709551615", "CPUAccounting": "no", "CPUQuotaPerSecUSec": "infinity", "CPUSchedulingPolicy": "0", "CPUSchedulingPriority": "0", "CPUSchedulingResetOnFork": "no", "CPUShares": "18446744073709551615", "CanIsolate": "no", "CanReload": "no", "CanStart": "yes", "CanStop": "yes", "CapabilityBoundingSet": "18446744073709551615", "ConditionResult": "no", "ConditionTimestampMonotonic": "0", "Conflicts": "ntpd.service shutdown.target", "ControlPID": "0", "DefaultDependencies": "yes", "Delegate": "no", "Description": "NTP client/server", "DevicePolicy": "auto", "EnvironmentFile": "/etc/sysconfig/chronyd (ignore_errors=yes)", "ExecMainCode": "0", "ExecMainExitTimestampMonotonic": "0", "ExecMainPID": "0", "ExecMainStartTimestampMonotonic": "0", "ExecMainStatus": "0", "ExecStart": "{ path=/usr/sbin/chronyd ; argv[]=/usr/sbin/chronyd $OPTIONS ; ignore_errors=no ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }", "ExecStartPost": "{ path=/usr/libexec/chrony-helper ; argv[]=/usr/libexec/chrony-helper update-daemon ; ignore_errors=no ; start_time=[n/a] ; stop_time=[n/a] ; pid=0 ; code=(null) ; status=0/0 }", "FailureAction": "none", "FileDescriptorStoreMax": "0", "FragmentPath": "/usr/lib/systemd/system/chronyd.service", "GuessMainPID": "yes", "IOScheduling": "0", "Id": "chronyd.service", "IgnoreOnIsolate": "no", "IgnoreOnSnapshot": "no", "IgnoreSIGPIPE": "yes", "InactiveEnterTimestampMonotonic": "0", "InactiveExitTimestampMonotonic": "0", "JobTimeoutAction": "none", "JobTimeoutUSec": "0", "KillMode": "control-group", "KillSignal": "15", "LimitAS": "18446744073709551615", "LimitCORE": "18446744073709551615", "LimitCPU": "18446744073709551615", "LimitDATA": "18446744073709551615", "LimitFSIZE": "18446744073709551615", "LimitLOCKS": "18446744073709551615", "LimitMEMLOCK": "65536", "LimitMSGQUEUE": "819200", "LimitNICE": "0", "LimitNOFILE": "4096", "LimitNPROC": "1875", "LimitRSS": "18446744073709551615", "LimitRTPRIO": "0", "LimitRTTIME": "18446744073709551615", "LimitSIGPENDING": "1875", "LimitSTACK": "18446744073709551615", "LoadState": "loaded", "MainPID": "0", "MemoryAccounting": "no", "MemoryCurrent": "18446744073709551615", "MemoryLimit": "18446744073709551615", "MountFlags": "0", "Names": "chronyd.service", "NeedDaemonReload": "no", "Nice": "0", "NoNewPrivileges": "no", "NonBlocking": "no", "NotifyAccess": "none", "OOMScoreAdjust": "0", "OnFailureJobMode": "replace", "PIDFile": "/var/run/chronyd.pid", "PermissionsStartOnly": "no", "PrivateDevices": "no", "PrivateNetwork": "no", "PrivateTmp": "no", "ProtectHome": "no", "ProtectSystem": "no", "RefuseManualStart": "no", "RefuseManualStop": "no", "RemainAfterExit": "no", "Requires": "basic.target", "Restart": "no", "RestartUSec": "100ms", "Result": "success", "RootDirectoryStartOnly": "no", "RuntimeDirectoryMode": "0755", "SameProcessGroup": "no", "SecureBits": "0", "SendSIGHUP": "no", "SendSIGKILL": "yes", "Slice": "system.slice", "StandardError": "inherit", "StandardInput": "null", "StandardOutput": "journal", "StartLimitAction": "none", "StartLimitBurst": "5", "StartLimitInterval": "10000000", "StartupBlockIOWeight": "18446744073709551615", "StartupCPUShares": "18446744073709551615", "StatusErrno": "0", "StopWhenUnneeded": "no", "SubState": "dead", "SyslogLevelPrefix": "yes", "SyslogPriority": "30", "SystemCallErrorNumber": "0", "TTYReset": "no", "TTYVHangup": "no", "TTYVTDisallocate": "no", "TimeoutStartUSec": "1min 30s", "TimeoutStopUSec": "1min 30s", "TimerSlackNSec": "50000", "Transient": "no", "Type": "forking", "UMask": "0022", "UnitFilePreset": "enabled", "UnitFileState": "enabled", "WantedBy": "multi-user.target", "Wants": "system.slice", "WatchdogTimestampMonotonic": "0", "WatchdogUSec": "0"}}

TASK [CentOS7.2 : copy chrony.conf template] ***********************************
changed: [host] => {"changed": true, "checksum": "edc2fa30b6c4cd9e96df43f7746b2f8d99fd4b30", "dest": "/etc/chrony.conf", "gid": 0, "group": "root", "md5sum": "0f5442788b66fdcc513dd5b1c40a8dea", "mode": "0644", "owner": "root", "secontext": "system_u:object_r:etc_t:s0", "size": 1170, "src": "/home/vagrant/.ansible/tmp/ansible-tmp-1480401232.06-224884913361550/source", "state": "file", "uid": 0}

TASK [CentOS7.2 : copy /etc/profile.d/alias.sh template] ***********************
changed: [host] => {"changed": true, "checksum": "781ebc25847eb135ec260d405817a435de70c4db", "dest": "/etc/profile.d/alias.sh", "gid": 0, "group": "root", "md5sum": "01206c14444d91222bb445b27522afcf", "mode": "0644", "owner": "root", "secontext": "system_u:object_r:bin_t:s0", "size": 98, "src": "/home/vagrant/.ansible/tmp/ansible-tmp-1480401232.56-62694927164343/source", "state": "file", "uid": 0}

TASK [CentOS7.2 : install selinux util] ****************************************
ok: [host] => (item=[u'libselinux-python', u'libselinux-utils', u'selinux-policy', u'selinux-policy-targeted']) => {"changed": false, "item": ["libselinux-python", "libselinux-utils", "selinux-policy", "selinux-policy-targeted"], "msg": "", "rc": 0, "results": ["libselinux-python-2.2.2-6.el7.x86_64 providing libselinux-python is already installed", "libselinux-utils-2.2.2-6.el7.x86_64 providing libselinux-utils is already installed", "selinux-policy-3.13.1-60.el7_2.9.noarch providing selinux-policy is already installed", "selinux-policy-targeted-3.13.1-60.el7_2.9.noarch providing selinux-policy-targeted is already installed"]}

TASK [CentOS7.2 : disable selinux] *********************************************
changed: [host] => {"changed": true, "configfile": "/etc/selinux/config", "msg": "state change will take effect next reboot, config state changed from 'permissive' to 'disabled'", "policy": "targeted", "state": "disabled"}

TASK [ansible : ssh config] ****************************************************
changed: [host] => {"changed": true, "checksum": "325f4dac20857674a7d02879087d4ed90817546d", "dest": "/home/vagrant/.ssh/config", "gid": 1000, "group": "vagrant", "md5sum": "6ed07d165913f46204d417d11564ffcb", "mode": "0600", "owner": "vagrant", "secontext": "unconfined_u:object_r:ssh_home_t:s0", "size": 59, "src": "/home/vagrant/.ansible/tmp/ansible-tmp-1480401233.45-176277810981132/source", "state": "file", "uid": 1000}

TASK [ansible : check existing id_rsa] *****************************************
ok: [host] => {"changed": false, "stat": {"exists": false}}

TASK [ansible : debug] *********************************************************
ok: [host] => {
    "id_rsa": {
        "changed": false,
        "stat": {
            "exists": false
        }
    }
}

TASK [ansible : Generate SSH keys] *********************************************
changed: [host] => {"changed": true, "cmd": "ssh-keygen -b 2048 -t rsa -f /home/vagrant/.ssh/id_rsa -q -N \"\"", "delta": "0:00:00.033785", "end": "2016-11-29 15:33:54.054979", "rc": 0, "start": "2016-11-29 15:33:54.021194", "stderr": "", "stdout": "", "stdout_lines": [], "warnings": []}

TASK [ansible : copy ssh keys] *************************************************
changed: [host] => (item=192.168.52.52) => {"changed": true, "cmd": "sshpass -p 'vagrant' ssh-copy-id -i /home/vagrant/.ssh/id_rsa.pub vagrant@192.168.52.52", "delta": "0:00:00.444070", "end": "2016-11-29 15:33:54.664431", "item": "192.168.52.52", "rc": 0, "start": "2016-11-29 15:33:54.220361", "stderr": "/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed\n/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys", "stdout": "\nNumber of key(s) added: 1\n\nNow try logging into the machine, with:   \"ssh 'vagrant@192.168.52.52'\"\nand check to make sure that only the key(s) you wanted were added.", "stdout_lines": ["", "Number of key(s) added: 1", "", "Now try logging into the machine, with:   \"ssh 'vagrant@192.168.52.52'\"", "and check to make sure that only the key(s) you wanted were added."], "warnings": []}

TASK [ansible : check ssh] *****************************************************
changed: [host] => (item=192.168.52.52) => {"changed": true, "cmd": "ansible -i /vagrant/development 192.168.52.52 -m ping", "delta": "0:00:01.026443", "end": "2016-11-29 15:33:55.863515", "item": "192.168.52.52", "rc": 0, "start": "2016-11-29 15:33:54.837072", "stderr": "", "stdout": "\u001b[0;32m192.168.52.52 | SUCCESS => {\n    \"changed\": false, \n    \"ping\": \"pong\"\n}\u001b[0m", "stdout_lines": ["\u001b[0;32m192.168.52.52 | SUCCESS => {", "    \"changed\": false, ", "    \"ping\": \"pong\"", "}\u001b[0m"], "warnings": []}

RUNNING HANDLER [CentOS7.2 : restart chronyd] **********************************
changed: [host] => {"changed": true, "enabled": true, "name": "chronyd", "state": "started", "status": {"ActiveEnterTimestamp": "Tue 2016-11-29 15:33:51 JST", "ActiveEnterTimestampMonotonic": "440875960", "ActiveExitTimestampMonotonic": "0", "ActiveState": "active", "After": "ntpdate.service basic.target system.slice ntpd.service sntp.service systemd-journald.socket", "AllowIsolate": "no", "AssertResult": "yes", "AssertTimestamp": "Tue 2016-11-29 15:33:51 JST", "AssertTimestampMonotonic": "440840965", "Before": "multi-user.target shutdown.target", "BlockIOAccounting": "no", "BlockIOWeight": "18446744073709551615", "CPUAccounting": "no", "CPUQuotaPerSecUSec": "infinity", "CPUSchedulingPolicy": "0", "CPUSchedulingPriority": "0", "CPUSchedulingResetOnFork": "no", "CPUShares": "18446744073709551615", "CanIsolate": "no", "CanReload": "no", "CanStart": "yes", "CanStop": "yes", "CapabilityBoundingSet": "18446744073709551615", "ConditionResult": "yes", "ConditionTimestamp": "Tue 2016-11-29 15:33:51 JST", "ConditionTimestampMonotonic": "440840965", "Conflicts": "ntpd.service shutdown.target", "ControlGroup": "/system.slice/chronyd.service", "ControlPID": "0", "DefaultDependencies": "yes", "Delegate": "no", "Description": "NTP client/server", "DevicePolicy": "auto", "EnvironmentFile": "/etc/sysconfig/chronyd (ignore_errors=yes)", "ExecMainCode": "0", "ExecMainExitTimestampMonotonic": "0", "ExecMainPID": "25933", "ExecMainStartTimestamp": "Tue 2016-11-29 15:33:51 JST", "ExecMainStartTimestampMonotonic": "440870739", "ExecMainStatus": "0", "ExecStart": "{ path=/usr/sbin/chronyd ; argv[]=/usr/sbin/chronyd $OPTIONS ; ignore_errors=no ; start_time=[Tue 2016-11-29 15:33:51 JST] ; stop_time=[Tue 2016-11-29 15:33:51 JST] ; pid=25931 ; code=exited ; status=0 }", "ExecStartPost": "{ path=/usr/libexec/chrony-helper ; argv[]=/usr/libexec/chrony-helper update-daemon ; ignore_errors=no ; start_time=[Tue 2016-11-29 15:33:51 JST] ; stop_time=[Tue 2016-11-29 15:33:51 JST] ; pid=25935 ; code=exited ; status=0 }", "FailureAction": "none", "FileDescriptorStoreMax": "0", "FragmentPath": "/usr/lib/systemd/system/chronyd.service", "GuessMainPID": "yes", "IOScheduling": "0", "Id": "chronyd.service", "IgnoreOnIsolate": "no", "IgnoreOnSnapshot": "no", "IgnoreSIGPIPE": "yes", "InactiveEnterTimestampMonotonic": "0", "InactiveExitTimestamp": "Tue 2016-11-29 15:33:51 JST", "InactiveExitTimestampMonotonic": "440841515", "JobTimeoutAction": "none", "JobTimeoutUSec": "0", "KillMode": "control-group", "KillSignal": "15", "LimitAS": "18446744073709551615", "LimitCORE": "18446744073709551615", "LimitCPU": "18446744073709551615", "LimitDATA": "18446744073709551615", "LimitFSIZE": "18446744073709551615", "LimitLOCKS": "18446744073709551615", "LimitMEMLOCK": "65536", "LimitMSGQUEUE": "819200", "LimitNICE": "0", "LimitNOFILE": "4096", "LimitNPROC": "1875", "LimitRSS": "18446744073709551615", "LimitRTPRIO": "0", "LimitRTTIME": "18446744073709551615", "LimitSIGPENDING": "1875", "LimitSTACK": "18446744073709551615", "LoadState": "loaded", "MainPID": "25933", "MemoryAccounting": "no", "MemoryCurrent": "18446744073709551615", "MemoryLimit": "18446744073709551615", "MountFlags": "0", "Names": "chronyd.service", "NeedDaemonReload": "no", "Nice": "0", "NoNewPrivileges": "no", "NonBlocking": "no", "NotifyAccess": "none", "OOMScoreAdjust": "0", "OnFailureJobMode": "replace", "PIDFile": "/var/run/chronyd.pid", "PermissionsStartOnly": "no", "PrivateDevices": "no", "PrivateNetwork": "no", "PrivateTmp": "no", "ProtectHome": "no", "ProtectSystem": "no", "RefuseManualStart": "no", "RefuseManualStop": "no", "RemainAfterExit": "no", "Requires": "basic.target", "Restart": "no", "RestartUSec": "100ms", "Result": "success", "RootDirectoryStartOnly": "no", "RuntimeDirectoryMode": "0755", "SameProcessGroup": "no", "SecureBits": "0", "SendSIGHUP": "no", "SendSIGKILL": "yes", "Slice": "system.slice", "StandardError": "inherit", "StandardInput": "null", "StandardOutput": "journal", "StartLimitAction": "none", "StartLimitBurst": "5", "StartLimitInterval": "10000000", "StartupBlockIOWeight": "18446744073709551615", "StartupCPUShares": "18446744073709551615", "StatusErrno": "0", "StopWhenUnneeded": "no", "SubState": "running", "SyslogLevelPrefix": "yes", "SyslogPriority": "30", "SystemCallErrorNumber": "0", "TTYReset": "no", "TTYVHangup": "no", "TTYVTDisallocate": "no", "TimeoutStartUSec": "1min 30s", "TimeoutStopUSec": "1min 30s", "TimerSlackNSec": "50000", "Transient": "no", "Type": "forking", "UMask": "0022", "UnitFilePreset": "enabled", "UnitFileState": "enabled", "WantedBy": "multi-user.target", "Wants": "system.slice", "WatchdogTimestamp": "Tue 2016-11-29 15:33:51 JST", "WatchdogTimestampMonotonic": "440870755", "WatchdogUSec": "0"}}

PLAY RECAP *********************************************************************
host                       : ok=19   changed=15   unreachable=0    failed=0

host にログイン

1
2
$ vagrant ssh host
[vagrant@host ~]$

webのplaybookを実行

 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
$ ansible-playbook -i /vagrant/development /vagrant/site.yml

PLAY [web] *********************************************************************

TASK [setup] *******************************************************************
ok: [192.168.52.52]

TASK [CentOS7.2 : yum update all] **********************************************
changed: [192.168.52.52]

TASK [CentOS7.2 : check CentOS version] ****************************************
changed: [192.168.52.52]

TASK [CentOS7.2 : set LANG] ****************************************************
changed: [192.168.52.52]

TASK [CentOS7.2 : set keymap] **************************************************
changed: [192.168.52.52]

TASK [CentOS7.2 : set timezone] ************************************************
changed: [192.168.52.52]

TASK [CentOS7.2 : install chrony] **********************************************
changed: [192.168.52.52]

TASK [CentOS7.2 : start chrony] ************************************************
changed: [192.168.52.52]

TASK [CentOS7.2 : copy chrony.conf template] ***********************************
changed: [192.168.52.52]

TASK [CentOS7.2 : copy /etc/profile.d/alias.sh template] ***********************
changed: [192.168.52.52]

TASK [CentOS7.2 : install selinux util] ****************************************
ok: [192.168.52.52] => (item=[u'libselinux-python', u'libselinux-utils', u'selinux-policy', u'selinux-policy-targeted'])

TASK [CentOS7.2 : disable selinux] *********************************************
changed: [192.168.52.52]

RUNNING HANDLER [CentOS7.2 : restart chronyd] **********************************
changed: [192.168.52.52]

PLAY RECAP *********************************************************************
192.168.52.52              : ok=13   changed=11   unreachable=0    failed=0

web にログイン

1
2
3
4
5
$ vagrant ssh web
Last login: Tue Nov 29 15:41:16 2016 from 192.168.52.51
[vagrant@web ~]$ echo $LANG
ja_JP.UTF-8
[vagrant@web ~]$

終了。