Repos with recipes to deploy some infrastructure services
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

9 行
183 B

  1. ---
  2. - name: Unmount device
  3. mount:
  4. fstab: "{{ mount.fstab | default(omit, true) }}"
  5. path: "{{ mount.path }}"
  6. src: "{{ mount.device }}"
  7. state: "unmounted"
  8. ...