我正在尝试使用 ansible 将文件系统从 Linux 挂载到 AIX,并尝试了几种方法,但管道中仍然出现错误。我可以手动挂载文件系统。我试过了
- name: Mount share storage on AIX system
shell: "/usr/sbin/mount system1.surce:/src/data /share"
但是出现权限错误,我become: yes
也尝试使用但没有运气。 2.然后我尝试使用安装模块。
- name: Mount share storage on AIX system
mount:
path: /share
src: system1.surce:/src/data
fstype: nfs
state: present
fstab: /etc/filesystems
任何帮助均感激不尽。