为什么没有正确加载配置文件?

问题描述 投票:0回答:1

我在主机上运行了包含以下内容的剧本:

---
- name: Test
  hosts: debian
  vars_files:
    - "./secret.vault.yaml"
  tasks: # Roles, modules, and any variables
    - name: Install aptitude using apt
      apt: name=aptitude state=latest update_cache=yes force_apt_get=yes

    - name: Install required system packages
      apt: name={{ item }} state=latest update_cache=yes
      loop:
        [
          "apt-transport-https",
          "ca-certificates",
          "curl",
          "software-properties-common",
          "python3-pip",
          "virtualenv",
          "python3-setuptools",
        ]

    - name: Install snap
      apt:
        update_cache: yes
        name: snapd

    - name: Install git
      apt:
        update_cache: yes
        name: git

    - name: Install certbot
      apt:
        update_cache: yes
        name: certbot

    - name: Install htop
      apt:
        update_cache: yes
        name: htop

    - name: Ensure group "sudo" exists
      group:
        name: sudo
        state: present

    - name: Add Docker GPG apt Key
      apt_key:
        url: https://download.docker.com/linux/debian/gpg
        state: present

    - name: Add Docker Repository
      apt_repository:
        repo: deb [arch=amd64] https://download.docker.com/linux/debian buster stable
        state: present

    - name: Index new repo into the cache
      apt:
        name: "*"
        state: latest
        update_cache: yes
        force_apt_get: yes

    - name: Update apt and install docker-ce
      apt:
        update_cache: yes
        name: docker-ce
        state: latest

    - name: Ensure group "docker" exists
      group:
        name: docker
        state: present

    - name: Add admin user
      user:
        name: admin
        comment: administrator
        groups: sudo, docker
        password: "{{ adminpw | password_hash('sha512') }}"

    - name: Ensure docker-compose is installed and available
      get_url:
        url: https://github.com/docker/compose/releases/download/1.25.4/docker-compose-{{ ansible_system }}-{{ ansible_userspace_architecture }}
        dest: /usr/local/bin/docker-compose
        mode: "u=rwx,g=rx,o=rx"

    - name: Copy SSH file
      copy:
        src: ~/.ssh
        dest: /home/admin/
        force: yes
        owner: admin
        group: admin
        remote_src: yes  

[当我尝试登录ssh [email protected]时,.profile无法正确加载:

enter image description here

键入bash命令后,显示:

enter image description here

正确。

我触发了剧本,如下所示:

ansible-playbook playbook.yaml -i ./hosts -u root --ask-vault-pass

做什么错了?

linux ansible debian ansible-2.x debian-based
1个回答
0
投票

根据您的“键入bash之后”语句,您期望用户的shell为/bin/bash,但不是;如果这是您的问题,那么您需要更新user:任务以指定所需的shell:

- name: Add admin user
  user:
    name: admin
    shell: /bin/bash
© www.soinside.com 2019 - 2024. All rights reserved.