File: inventory.yml

package info (click to toggle)
python-pyspnego 0.10.2-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,688 kB
  • sloc: python: 16,197; sh: 182; makefile: 11
file content (67 lines) | stat: -rw-r--r-- 2,029 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
all:
  children:
    windows:
      children:
        win_controller:
          hosts:
            DC01:
              ansible_host: 192.168.65.10
              vagrant_box: jborean93/WindowsServer2022
        win_children:
          hosts:
            SERVER2012R2:
              ansible_host: 192.168.65.11
              vagrant_box: jborean93/WindowsServer2012R2
            SERVER2022:
              ansible_host: 192.168.65.12
              vagrant_box: jborean93/WindowsServer2022
      vars:
        ansible_connection: psrp
        ansible_port: 5985
        python_interpreters:
        - C:\Program Files\Python38
        - C:\Program Files (x86)\Python38-32
        - C:\Program Files\Python39
        - C:\Program Files (x86)\Python39-32
        - C:\Program Files\Python310
        - C:\Program Files (x86)\Python310-32
        - C:\Program Files\Python311
        - C:\Program Files (x86)\Python311-32
        python_venv_path: C:\temp\venv
        krb_provider: SSPI

    linux:
      children:
        linux_children:
          hosts:
            ROCKY9-MIT:
              ansible_host: 192.168.65.13
              vagrant_box: generic/rocky9
              krb_packages:
              - krb5-devel
              - krb5-workstation
              krb_provider: MIT
            ROCKY9-HEIMDAL:
              ansible_host: 192.168.65.14
              vagrant_box: generic/rocky9
              krb_packages:
              - heimdal-devel
              - heimdal-libs
              - heimdal-path
              - heimdal-workstation
              - libcom_err-devel
              krb_provider: Heimdal
      vars:
        ansible_ssh_common_args: -o UserKnownHostsFile=/dev/null -o StrictHostKeyChecking=no
        python_interpreters:
        - /usr/bin/python3.9
        python_venv_path: ~/venv

  vars:
    ansible_user: vagrant
    ansible_password: vagrant

    domain_name: spnego.test
    domain_username: spnego
    domain_password: Password01
    domain_upn: '{{ domain_username }}@{{ domain_name | upper }}'