###前提・実現したいこと
Amazon Linuxの環境にansibleをインストールし、ファイルの末尾に複数行を追加したく、lineinfileを使いたいのですが、エラーがでました。
エラーを解消して、ファイル末尾に複数行を追加する方法を教えて下さい
###発生している問題・エラーメッセージ
ERROR! this task 'lineinfile' has extra params, which is only allowed in the following modules: command, shell, script, include, include_vars, add_host, group_by, set_fact, raw, meta
###該当のソースコード
- name: Configure the file discriptor. lineinfile: > dest: /etc/security/limits.conf line={{item}} backup=yes with_items: - 'root soft nofile 65535' - 'root hard nofile 65535' - '* soft nofile 65535' - '* hard nofile 65535'
###試したこと
blockinfileを使っても同様でした。
###補足情報(言語/FW/ツール等のバージョンなど)
ansibleのインストールは次のようにしています。
lang
1#sudo yum-config-manager --enable epel 2#sudo yum install ansible
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2016/09/08 03:09