Advertisement
sandervanvugt

RHCE day 4 may22

May 19th, 2022
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 19.08 KB | None | 0 0
  1. [ansible@control lesson16]$ history
  2. 1 ip a
  3. 2 sudo vim /etc/hosts
  4. 3 ping ansible1
  5. 4 sudo vim /etc/hosts
  6. 5 ping ansible1
  7. 6 ping ansible2
  8. 7 ping ansible3
  9. 8 sudo yum install -y epel-release
  10. 9 sudo yum install ansible
  11. 10 sudo yum update -y
  12. 11 sudo yum install ansible
  13. 12 sudo reboot
  14. 13 sudo yum install ansible
  15. 14 sudo yum provides */sshpass
  16. 15 sudo yum install ansible --nobest
  17. 16 sudo yum install ansible --skip-broken
  18. 17 sudo -i
  19. 18 sudo yum install ansible
  20. 19 sudo vim /etc/yum.repos.d/oldepel.repo
  21. 20 sudo cat /etc/yum.repos.d/oldepel.repo
  22. 21 ansible --version
  23. 22 ping ansible1
  24. 23 mkdir setup
  25. 24 cd setup
  26. 25 vim inventory
  27. 26 ansible -i inventory all -m ping
  28. 27 ssh root@ansible1
  29. 28 ssh root@ansible2
  30. 29 ssh root@ansible3
  31. 30 ansible -i inventory all -m ping
  32. 31 ansible -i inventory all -m ping -u root -k
  33. 32 history
  34. 33 ansible -i inventory all -u root -k -m command -a "useradd ansible"
  35. 34 sudo useradd ansible
  36. 35 echo $?
  37. 36 ansible -i inventory all -u root -k -m user -a "name=ansible"
  38. 37 ansible -i inventory all -u root -k -m user -a "name=bob"
  39. 38 history
  40. 39 ansible -i inventory all -u root -k -m shell -a "echo password | passwd --stdin ansible"
  41. 40 ssh ansible@ansible1
  42. 41 history
  43. 42 ansible -i inventory all -u ansible -k -m command -a "whoami"
  44. 43 ansible -i inventory all -u ansible -k -m command -a "ls -l /root"
  45. 44 ansible -i inventory all -u root -k -m shell -a '"ansible ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/ansible'
  46. 45 ansible -i inventory all -u root -k -m shell -a 'echo "ansible ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/ansible'
  47. 46 ssh ansible1
  48. 47 ansible -i inventory all -u ansible -k -m command -a "ls -l /root"
  49. 48 ansible -i inventory all -u ansible -k -b -m command -a "ls -l /root"
  50. 49 ssh-keygen
  51. 50 ssh-copy-id ansible1
  52. 51 ssh-copy-id ansible2
  53. 52 ssh-copy-id ansible3
  54. 53 ssh ansible3
  55. 54 ansible -i inventory all -u ansible -b -m command -a "ls -l /root"
  56. 55 history
  57. 56 pwd
  58. 57 vim inventory
  59. 58 sudo vim /etc/ansible/hosts
  60. 59 ansible --version
  61. 60 ansible -i inventory all --list-hosts
  62. 61 ansible db --list-hosts
  63. 62 ansible -i inventory db --list-hosts
  64. 63 history
  65. 64 sudo vim /etc/ansible/ansible.cfg
  66. 65 ansible --version
  67. 66 vim ansible.cfg
  68. 67 ansible --version
  69. 68 cd ..
  70. 69 sudo yum install git
  71. 70 git clone https://github.com/sandervanvugt/rhce8-live
  72. 71 ls
  73. 72 cd rhce8-live/
  74. 73 ls
  75. 74 cd lesson2/
  76. 75 ls
  77. 76 vim ansible.cfg
  78. 77 vim inventory
  79. 78 ansible all -m command -a "ls -l /root"
  80. 79 history
  81. 80 ansible-doc -l |wc
  82. 81 ansible-doc -l
  83. 82 ansible-doc user
  84. 83 ansible all -m service -a "name=httpd state=started"
  85. 84 ansible all -m service -a "name=crond state=started"
  86. 85 ansible all -m service -a "name=crond state=stopped"
  87. 86 ansible all -m command -a "/sbin/reboot -t now"
  88. 87 ansible all -m command -a "/sbin/reboot"
  89. 88 ansible all -m service -a "name=crond state=started"
  90. 89 cd
  91. 90 ansible all -m ping
  92. 91 ls
  93. 92 ansible all -m ping -i setup/inventory
  94. 93 cd rhce8-live/
  95. 94 ls
  96. 95 ./countdown 14
  97. 96 cd lesson2/
  98. 97 ansible all -m package -a "name=nmap"
  99. 98 ansible-doc yum
  100. 99 ansible all -m service -a "name=httpd state=started"
  101. 100 yum demostructure.yaml
  102. 101 vim demostructure.yaml
  103. 102 ansible-playbook demostructure.yaml
  104. 103 vim demostructure.yaml
  105. 104 ansible-playbook demostructure.yaml
  106. 105 cat demostructure.yaml
  107. 106 vim demostructure.yaml
  108. 107 ansible-playbook demostructure.yaml
  109. 108 vim demostructure.yaml
  110. 109 ansible-playbook demostructure.yaml
  111. 110 vim demostructure.yaml
  112. 111 ansible-playbook demostructure.yaml
  113. 112 vim demostructure.yaml
  114. 113 vim ~/.vimrc
  115. 114 ls
  116. 115 cd ../lesson5
  117. 116 ls
  118. 117 grep vsftp *
  119. 118 cd ..
  120. 119 ls
  121. 120 cd lesson4
  122. 121 ls
  123. 122 vim vsftpd.yml
  124. 123 ansible-playbook vsftpd.yml
  125. 124 history
  126. 125 ansible-playbook vsftpd.yml
  127. 126 sudo vim /etc/hosts
  128. 127 ansible-doc copy
  129. 128 ansible all -m copy -a "src=/etc/hosts dest=/etc/hosts"
  130. 129 ansible-playbook vsftpd.yml
  131. 130 history
  132. 131 vim ansible.cfg
  133. 132 ansible-playbook vsftpd-err.yml
  134. 133 vim vsftpd-err.yml
  135. 134 ansible-playbook vsftpd-err.yml
  136. 135 ansible-playbook --syntax-check vsftpd-err.yml
  137. 136 ansible-playbook -v vsftpd.yml
  138. 137 ansible-playbook -vvvv vsftpd.yml
  139. 138 sudo yum provides */ansible-lint
  140. 139 sudo yum install -y python3-ansible-lint
  141. 140 ansible-lint -L
  142. 141 ansible-lint vsftpd.yml
  143. 142 ansible all -m setup | less
  144. 143 cd ../lesson5/
  145. 144 vim inventory
  146. 145 ls
  147. 146 cd ../lesson4/
  148. 147 ls
  149. 148 cd ..
  150. 149 cd lesson7/
  151. 150 ls
  152. 151 cd
  153. 152 find -name "variables_example.*"
  154. 153 cd rhce8-live/
  155. 154 cd lesson5/
  156. 155 ls
  157. 156 vim variables_example.yaml
  158. 157 ansible-playbook variables_example.yaml
  159. 158 vim variables_example.yaml
  160. 159 ansible-playbook variables_example.yaml
  161. 160 vim variables_example.yaml
  162. 161 ansible-playbook variables_example.yaml -e myuser=bob
  163. 162 cat variables_example.yaml
  164. 163 find ~ -name "variables_example.*"
  165. 164 ls
  166. 165 cd ../..
  167. 166 git clone https://github.com/sandervanvugt/rhce8
  168. 167 git clone https://github.com/sandervanvugt/rhce8-book
  169. 168 find ~ -name "variables_example.*"
  170. 169 vim askme.yaml
  171. 170 cd rhce8-book/
  172. 171 grep vars_prompt
  173. 172 grep vars_prompt *
  174. 173 vim listing710.yaml
  175. 174 cd -
  176. 175 vim askme.yaml
  177. 176 vim rhce8-book/listing710.yaml
  178. 177 vim askme.yaml
  179. 178 ansible-playbook askme.yaml
  180. 179 mv askme.yaml rhce8-live/lesson5/
  181. 180 cd rhce8-live/lesson5/
  182. 181 ls
  183. 182 ansible-playbook askme.yaml
  184. 183 vim inventory
  185. 184 vim askme.yaml
  186. 185 ansible-playbook askme.yaml
  187. 186 cat askme.yaml
  188. 187 ls
  189. 188 cd webservers/
  190. 189 ls
  191. 190 pwd
  192. 191 ls
  193. 192 cat inventory
  194. 193 tree
  195. 194 vim group_vars/lamp
  196. 195 vim site.yml
  197. 196 ansible-playbook site.yml
  198. 197 history
  199. 198 cd ..
  200. 199 vim create_user.yaml
  201. 200 ansible-playbook create_user.yaml
  202. 201 vim create_user.yaml
  203. 202 ansible-playbook create_user.yaml
  204. 203 vim create_user.yaml
  205. 204 ansible-playbook create_user.yaml
  206. 205 ansible-doc -l | grep group
  207. 206 ansible-doc group
  208. 207 vim create_user.yaml
  209. 208 ansible-playbook create_user.yaml
  210. 209 cat create_user.yaml
  211. 210 ../countdown 12
  212. 211 vim ct.yaml
  213. 212 ansible -u root - inventory remotehost -k -m raw -a "yum install -y python3"
  214. 213 ansible -u root -i inventory remotehost -k -m raw -a "yum install -y python3"
  215. 214 ansible-vault --help
  216. 215 cd ../lesson7/
  217. 216 ls
  218. 217 cd vault/
  219. 218 ls
  220. 219 ansible-vault create secret.yml
  221. 220 cat secret.yml
  222. 221 vim create-user.yml
  223. 222 ansible-playbook create-user.yml
  224. 223 ansible-playbook --ask-vault-pass create-user.yml
  225. 224 ansible ansible1.example.com -a "tail /etc/shadow"
  226. 225 echo password > ~/vault-pass
  227. 226 ansible-playbook --vault-password-file=~/vault-pass create-user.yml
  228. 227 history
  229. 228 vim secret.dummy
  230. 229 cat secret.dummy
  231. 230 cat create-user.yml
  232. 231 ansible ansible1.example.com -m setup | less
  233. 232 history | grep copy
  234. 233 cd ..
  235. 234 pwd
  236. 235 cd facts/
  237. 236 ls
  238. 237 vim facts.yml
  239. 238 ansible-playbook facts.yml
  240. 239 vim ansible.cfg
  241. 240 ansible-playbook facts.yml
  242. 241 vim inventory
  243. 242 ansible-playbook facts.yml
  244. 243 vim ipfact.yml
  245. 244 ansible-playbook ipfact.yml
  246. 245 vim ipfact.yml
  247. 246 pwd
  248. 247 ../../countdown 13
  249. 248 vim ipfact.yml
  250. 249 ls
  251. 250 vim newlocalfacts.yml
  252. 251 vim localfacts.fact
  253. 252 ansible-playbook newlocalfacts.yml
  254. 253 vim inventory
  255. 254 ansible-playbook newlocalfacts.yml
  256. 255 ansible ansible2 -m setup -a "filter=ansible_local"
  257. 256 vim printfacts.yaml
  258. 257 ansible-playbook printfacts.yaml
  259. 258 vim printfacts.yaml
  260. 259 ansible-playbook printfacts.yaml
  261. 260 vim printfacts.yaml
  262. 261 ansible-playbook printfacts.yaml
  263. 262 vim printfacts.yaml
  264. 263 ansible-playbook printfacts.yaml
  265. 264 vim printfacts.yaml
  266. 265 cat printfacts.yaml
  267. 266 ls
  268. 267 vim setupfactcache.yaml
  269. 268 ansible -m setup ansible2
  270. 269 ansible -m setup ansible2 | less
  271. 270 cd ..
  272. 271 ls
  273. 272 cd arrays/
  274. 273 ls
  275. 274 vim inventory
  276. 275 tree
  277. 276 cat vars/users-dictionary
  278. 277 cat vars/users-list
  279. 278 ls
  280. 279 vim multi-list.yml
  281. 280 ansible-playbook multi-list.yml
  282. 281 ansible-playbook multi-dictionary.yml
  283. 282 vim multi-dictionary.yml
  284. 283 ls
  285. 284 pwd
  286. 285 ../../countdown 13
  287. 286 cd ..
  288. 287 ls
  289. 288 cd lesson8/
  290. 289 ls
  291. 290 vim loopservices.yml
  292. 291 ansible-playbook loopservices.yml
  293. 292 vim loopservices.yml
  294. 293 ansible-playbook loopservices.yml
  295. 294 vim loopusers.yml
  296. 295 ansible-playbook loopusers.yml
  297. 296 vim loop-over-variable.yml
  298. 297 cat loopvars.yml
  299. 298 vim loop-over-variable.yml
  300. 299 ansible-playbook loop-over-variable.yml
  301. 300 ls
  302. 301 vim register_loop.yml
  303. 302 ansible-playbook register_loop.yml
  304. 303 im register_command.yml
  305. 304 vim register_command.yml
  306. 305 vim register_loop.yml
  307. 306 ansible-playbook register_loop.yml
  308. 307 vim register_loop.yml
  309. 308 ansible-playbook register_loop.yml
  310. 309 vim register_loop.yml
  311. 310 ansible-playbook register_loop.yml
  312. 311 vim register_loop.yml
  313. 312 ansible-playbook register_loop.yml
  314. 313 vim register_command.yml
  315. 314 ansible-playbook register_command.yml
  316. 315 vim register_command.yml
  317. 316 ansible-playbook register_command.yml
  318. 317 vim register_command.yml
  319. 318 vim distro.yml
  320. 319 ansible-playbook distro.yml
  321. 320 vim distro.yml
  322. 321 ansible-playbook distro.yml
  323. 322 vim distro.yml
  324. 323 vim distro.yml -e mypackage=vsftpd
  325. 324 ansible-playbook distro.yml -e mypackage=vsftpd
  326. 325 vim quicktest.yml
  327. 326 ansible-playbook quicktest.yml
  328. 327 vim quicktest.yml
  329. 328 ansible-playbook quicktest.yml
  330. 329 vim command-output-test.yml
  331. 330 vgs
  332. 331 sudo vgs
  333. 332 ansible-playbook command-output-test.yml
  334. 333 vim command-output-test.yml
  335. 334 history
  336. 335 sudo cat /etc/yum.repos.d/oldepel.repo
  337. 336 echo >> testfile <<EOF
  338. file1
  339. file2
  340. EOF
  341.  
  342. 337 cat testfile
  343. 338 vim test.sh
  344. 339 bash test.sh
  345. 340 cat testfile
  346. 341 bash test.sh
  347. 342 vim test.sh
  348. 343 bash test.sh
  349. 344 cat testfile
  350. 345 vim test.sh
  351. 346 history | less
  352. 347 cd
  353. 348 find . -name "set-fact*"
  354. 349 ls
  355. 350 history
  356. 351 cd rhce8-live/
  357. 352 ls
  358. 353 cd lesson8/
  359. 354 ls
  360. 355 vim when_multiple.yml
  361. 356 ansible-playbook when_multiple.yml
  362. 357 vim when_multiple.yml
  363. 358 ansible-playbook when_multiple.yml
  364. 359 vim when_multiple_complex.yml
  365. 360 ansible-playbook when_multiple_complex.yml
  366. 361 vim ifsize.yml
  367. 362 ansible ansible1.example.com -m setup | less
  368. 363 vim ifsize.yml
  369. 364 ansible-playbook ifsize.yml
  370. 365 vim ifsize.yml
  371. 366 ansible-playbook ifsize.yml -e package=vsftpd
  372. 367 cat ifsize.yml
  373. 368 vim restart.yml
  374. 369 ansible ansible1.example.com -m service -a "name=crond state=stopped"
  375. 370 ansible-playbook restart.yml
  376. 371 vim et.yaml
  377. 372 vim ansible1.fact
  378. 373 vim ansible2.fact
  379. 374 vim et.yaml
  380. 375 ansible-playbook et.yaml
  381. 376 vim et.yaml
  382. 377 vim ansible1.fact
  383. 378 ansible-playbook et.yaml
  384. 379 vim ansible1.fact
  385. 380 vim et.yaml
  386. 381 ansible-playbook et.yaml
  387. 382 vim inventory
  388. 383 ansible-playbook et.yaml
  389. 384 vim et.yaml
  390. 385 vim localfact.fact
  391. 386 vim et.yaml
  392. 387 ansible-playbook et.yaml
  393. 388 vim et.yaml
  394. 389 ansible-playbook et.yaml
  395. 390 vim et.yaml
  396. 391 cat et.yaml
  397. 392 vim handlers.yml
  398. 393 cp /tmp/index.html
  399. 394 touch /tmp/index.html
  400. 395 ansible-playbook handlers.yml
  401. 396 vim handlers.yml
  402. 397 ansible-playbook handlers.yml
  403. 398 ansible all -m file -a "name=/var/www/html/index.html state=absent"
  404. 399 vim handlers.yml
  405. 400 ansible-playbook handlers.yml
  406. 401 ls
  407. 402 vim blocks.yml
  408. 403 ansible-playbook blocks.yml
  409. 404 vim blocks.yml
  410. 405 ansible-playbook blocks.yml
  411. 406 grep rescue *
  412. 407 cd ..
  413. 408 git pull
  414. 409 cd ..
  415. 410 mkdir new
  416. 411 cd new
  417. 412 git clone https://github.com/sandervanvugt/rhce8-live
  418. 413 cd rhce8-live/
  419. 414 cd lesson8/
  420. 415 ls
  421. 416 vim block2.yaml
  422. 417 ansible-playbook block2.yaml
  423. 418 vim block2.yaml
  424. 419 vim ar.yaml
  425. 420 vim ../countdown
  426. 421 ../countdown 10
  427. 422 ls
  428. 423 vim failure.yml
  429. 424 ansible-playbook failure.yml
  430. 425 history | less
  431. 426 ansible -i inventory localhost -u root -k -m shell -a 'echo "ansible ALL=(ALL) NOPASSWD: ALL" > /etc/sudoers.d/ansible'
  432. 427 sudo vim /etc/sudoers.d/ansible
  433. 428 ansible-playbook failure.yml
  434. 429 vim failure.yml
  435. 430 ansible-playbook failure.yml
  436. 431 vim failure.yml
  437. 432 vim listing725.yaml
  438. 433 ansible-playbook listing725.yaml
  439. 434 vim changed.yml
  440. 435 ansible-playbook changed.yml
  441. 436 vim changed.yml
  442. 437 ansible-playbook changed.yml
  443. 438 cd ../lesson9/
  444. 439 vim file.yml
  445. 440 ansible-playbook file.yml
  446. 441 vim file.yml
  447. 442 ansible all -a "ls -l /tmp/removeme"
  448. 443 vim file.yml
  449. 444 ansible all -m file "name=/tmp/removeme state=absent"
  450. 445 ansible all -m file - a "name=/tmp/removeme state=absent"
  451. 446 ansible all -m file - a "path=/tmp/removeme state=absent"
  452. 447 ansible all -m file -a "path=/tmp/removeme state=absent"
  453. 448 ansible-playbook file.yml
  454. 449 vim copy.yml
  455. 450 ansible-playbook copy.yml
  456. 451 ls /tmp
  457. 452 cat /tmp/ansible1.example.com/tmp/hosts
  458. 453 vim ../countdown
  459. 454 ../countdown 15
  460. 455 cd ../lesson8/
  461. 456 ls
  462. 457 cd ..
  463. 458 ls
  464. 459 cd ..
  465. 460 ls
  466. 461 cd rhce8-book/
  467. 462 ls
  468. 463 vim listing79.yaml
  469. 464 ansible-playbook listing79.yaml
  470. 465 vim listing79.yaml
  471. 466 ansible-playbook listing79.yaml
  472. 467 vim inventory
  473. 468 ansible-playbook listing79.yaml
  474. 469 ansible-doc set_fact
  475. 470 cat listing79.yaml
  476. 471 cd ../rhce8-live/lesson9/
  477. 472 l
  478. 473 ls
  479. 474 vim selinux.yml
  480. 475 ansible-playbook selinux.yml
  481. 476 vim selinux.yml
  482. 477 ansible all -a "ls -lZ /tmp/removeme"
  483. 478 ls
  484. 479 vim templates/vsftpd.j2
  485. 480 vim vsftpd-template.yml
  486. 481 ansible-playbook vsftpd-template.yml
  487. 482 ansible ansible1.example.com -a "cat /etc/vsftpd/vsftpd.conf"
  488. 483 ls templates/
  489. 484 vim templates/hosts.j2
  490. 485 vim hostsfile.yml
  491. 486 ansible-playbook hostsfile.yml
  492. 487 ansible all -a "cat /etc/hosts"
  493. 488 ../countdown 13
  494. 489 cd ../lesson11/
  495. 490 ls
  496. 491 ansible-galaxy install geerlingguy.nginx
  497. 492 cd roles/
  498. 493 ls
  499. 494 cd ..
  500. 495 ansible-galaxy install nginxinc.nginx
  501. 496 ansible-galaxy install https://galaxy.ansible.com/nginxinc/nginx
  502. 497 sudo yum install rhel-system-roles
  503. 498 rpm -ql rhel-system-roles
  504. 499 cd /usr/share/doc/rhel-system-roles/
  505. 500 ls
  506. 501 cd timesync/
  507. 502 ls
  508. 503 vim example-multiple-ntp-servers-playbook.yml
  509. 504 cd /usr/share/ansible/roles/
  510. 505 ls
  511. 506 cd rhel-system-roles.timesync/
  512. 507 ls -l
  513. 508 cd tasks/
  514. 509 ls
  515. 510 vim main.yml
  516. 511 cd
  517. 512 cd rhce8-live/
  518. 513 cd lesson11/
  519. 514 ls
  520. 515 cd roles
  521. 516 ls
  522. 517 ansible-galaxy init myrole
  523. 518 ls
  524. 519 tree myrole/
  525. 520 cd motd/
  526. 521 ls
  527. 522 tree
  528. 523 cat defaults/main.yml
  529. 524 cat tasks/main.yml
  530. 525 cat templates/motd.j2
  531. 526 cd ..
  532. 527 ls
  533. 528 vim motd-role.yml
  534. 529 ansible-playbook motd-role.yml
  535. 530 ansible-galaxy list
  536. 531 ls
  537. 532 vim enforce-selinux.yml
  538. 533 vim enforce-selinux-simplified.yml
  539. 534 ls
  540. 535 ansible-galaxy role install nginxinc.nginx
  541. 536 ansible-galaxy collection install nginxinc.nginx_controller
  542. 537 vim ansible.cfg
  543. 538 ansible-galaxy role install nginxinc.nginx
  544. 539 vim ansible.cfg
  545. 540 ansible-galaxy collection install ansible.posix
  546. 541 tree ~/.ansible/collections/ansible_collections/ansible/posix/
  547. 542 tree ~/.ansible/collections/ansible_collections/ansible/posix/ | less
  548. 543 ansible-doc ansible.posix.selinux
  549. 544 ls
  550. 545 vim enforce-selinux-simplified.yml
  551. 546 cd /usr/share/doc/rhel-system-roles/
  552. 547 ls
  553. 548 cd selinux/
  554. 549 ls
  555. 550 cp example-selinux-playbook.yml ~/rhce8-live/lesson12
  556. 551 cd ~/rhce8-live/lesson12/
  557. 552 ls
  558. 553 vim example-selinux-playbook.yml
  559. 554 ansible-playbook example-selinux-playbook.yml
  560. 555 ansible all -m stat "name=/www"
  561. 556 ansible all -m stat -a "name=/www"
  562. 557 ansible all -m stat -a "path=/www"
  563. 558 ansible all -a "ls -Zd /www"
  564. 559 vim inventory
  565. 560 ansible all -a "ls -Zd /www"
  566. 561 ansible all -i localhost, -m debug -a "msg={{ 'mypassword' | password_hash('sha512', 'mysecretsalt') }}"
  567. 562 cd ../lesson16/
  568. 563 ls
  569. 564 vim userpw.yml
  570. 565 ansible-playbook userpw.yml
  571. 566 ssh anna@ansible2.example.com
  572. 567 ansible ansible2.example.com -a "cat /etc/shadow"
  573. 568 ls
  574. 569 vim listing1313.yaml
  575. 570 sudo useradd linda
  576. 571 sudo -i
  577. 572 vim listing1313.yaml
  578. 573 vim users-advanced.yml
  579. 574 vim exercise134-tasks.yaml
  580. 575 vim exercise134-vars.yaml
  581. 576 ls
  582. 577 vim users-advanced.yml
  583. 578 ansible-doc authorized_key
  584. 579 vim users-advanced.yml
  585. 580 ansible-playbook users-advanced.yml
  586. 581 vim users-advanced.yml
  587. 582 ../countdown 12
  588. 583 vim ct.yaml
  589. 584 cat ct.yaml
  590. 585 ../countdown 15
  591. 586 cat ct.yaml
  592. 587 vim ct.yaml
  593. 588 ansible-playbook ct.yaml
  594. 589 vim ct.yaml
  595. 590 ansible-playbook ct.yaml
  596. 591 vim inventory
  597. 592 vim ct.yaml
  598. 593 ansible-playbook ct.yaml
  599. 594 ansible all -a "lsblk"
  600. 595 vim ct.yaml
  601. 596 cd ../lesson13/
  602. 597 vim includes-and-imports.yaml
  603. 598 vim tasks/service.yaml
  604. 599 vim tasks/firewall.yaml
  605. 600 ls
  606. 601 cd ../lesson15/
  607. 602 ls
  608. 603 vim assertsize-wrong.yml
  609. 604 ansible-playbook assertsize-wrong.yml
  610. 605 vim assertsize-wrong.yml
  611. 606 vim assertsize.yml
  612. 607 ansible-playbook assertsize.yml
  613. 608 vim uri.yml
  614. 609 ansible-playbook uri.yml
  615. 610 cd ../lesson16/
  616. 611 vim ct.yaml
  617. 612 ansible-playbook ct.yaml
  618. 613 vim ct.yaml
  619. 614 ansible-playbook ct.yaml
  620. 615 vim ct.yaml
  621. 616 vim cp.yaml
  622. 617 ansible-playbook cp.yaml
  623. 618 vim cp.yaml
  624. 619 ansible-playbook cp.yaml
  625. 620 vim cp.yaml
  626. 621 ansible-doc parted
  627. 622 vim cp.yaml
  628. 623 ansible-doc parted
  629. 624 ansible-playbook cp.yaml
  630. 625 vim cp.yaml
  631. 626 ls
  632. 627 vim storage-advanced.yml
  633. 628 ansible-playbook storage-advanced.yml
  634. 629 ansible ansible1.example.com -a "lsblk"
  635. 630 history
  636. [ansible@control lesson16]$
  637.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement