내 스크립트는 다음과 같습니다
#!/usr/bin/expect
set timeout 1
spawn /etc/init.d/oracleasm configure
expect "Default user to own the driver interface []:\r"
send -- "grid\r"
expect "Default group to own the driver interface []:\r"
send -- "asmadmin\r"
expect {Scan for Oracle ASM disks on boot (y/n) [y]:\r}
send -- "y\r"
interact
정상적으로 실행하면 문제가 없는데, ansible을 사용하여 실행하면 문제가 발생합니다 not apply
.
내 앤서블 코드:
- name: -- run oracleasm-configuration.sh (oracleasm configure -i) --
shell: |
/root/oracleasm-configuration.sh