Fixed int to string warning

This commit is contained in:
Ubergeek 2020-01-05 19:11:01 +00:00
parent ebf4eec047
commit 095210ea51
1 changed files with 22 additions and 22 deletions

View File

@ -6,18 +6,18 @@
proto: tcp proto: tcp
port: '{{ item }}' port: '{{ item }}'
with_items: with_items:
- 70 - '70'
- 79 - '79'
- 80 - '80'
- 113 - '113'
- 143 - '143'
- 443 - '443'
- 1326 - '1326'
- 5154 - '5154'
- 6697 - '6697'
- 7776 - '7776'
- 30000 - '30000'
- 25565 - '25565'
- name: Create UFW udp rules - name: Create UFW udp rules
ufw: ufw:
@ -25,10 +25,10 @@
proto: udp proto: udp
port: '{{ item }}' port: '{{ item }}'
with_items: with_items:
- "60000:61000" - '60000:61000'
- 1326 - '1326'
- 5154 - '5154'
- 30000 - '30000'
- name: Create tcp limits - name: Create tcp limits
ufw: ufw:
@ -36,11 +36,11 @@
proto: tcp proto: tcp
port: '{{ item }}' port: '{{ item }}'
with_items: with_items:
- 22 - '22'
- 25 - '25'
- 587 - '587'
- 2222 - '2222'
- 53 - '53'
- name: Create UDP limits - name: Create UDP limits
ufw: ufw:
@ -48,4 +48,4 @@
proto: udp proto: udp
port: '{{ item }}' port: '{{ item }}'
with_items: with_items:
- 53 - '53'