Advertisement
Guest User

Untitled

a guest
Dec 9th, 2014
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. {% set disk_exist_c1 = salt['cmd.run']("ls /dev/xvdc1") %}
  2. {% set disk_exist_c = salt['cmd.run']("ls /dev/xvdc") %}
  3.  
  4. {% if 'No such file or directory' not in disk_exist_c1 %}
  5. {% set data_disk = "/dev/xvdc1" %}
  6. {% set data_disk_size = salt['cmd.run']("lsblk --nodeps --noheadings -b -o SIZE "+ data_disk) %}
  7. {% elif 'No such file or directory' not in disk_exist_c %}
  8. {% set data_disk = "/dev/xvdc1" %}
  9. {% set data_disk_size = salt['cmd.run']("lsblk --nodeps --noheadings -b -o SIZE "+ data_disk) %}
  10. {% endif %}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement