作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用 ansible 安装驱动器。这是我的剧本
- name: Create directory
file:
path: /u01
state: directory
- name: Create a filesystem on a drive
filesystem:
fstype: xfs
dev: /dev/xvdf
- name: Mount the drive and update the fstab file
mount:
backup: yes
path: /u01
src: /dev/xvdf
opts: bind
state: mounted
fstype: xfs
当我运行它时,前 2 个 ntasks 完成了。创建目录并创建文件系统。但是,当我进行到最后一步时出现以下错误:
TASK [mount : Mount the drive and update the fstab file] ****************************************************************************************************
fatal: [172.31.42.187]: FAILED! => {"changed": false, "msg": "Error mounting /u01: mount: /u01: mount(2) system call failed: Not a directory.\n"}
关于造成这种情况的原因有什么想法吗?
最佳答案
好的,我解决了这个问题。我认为主要问题是 opts 参数,我将其更改为 defaults,nofail 并且它起作用了。所以剧本现在看起来像这样:
- name: Create a filesystem on a drive
filesystem:
fstype: xfs
dev: /dev/xvdb
- name: Mount the drive and update the fstab file
mount:
backup: yes
path: "/u01"
src: /dev/xvdb
opts: defaults,nofail
state: mounted
fstype: xfs
关于linux - 使用 ansible 安装驱动器时出现 "Not a directory"错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61280462/
我是一名优秀的程序员,十分优秀!