Skip to content

Commit 88269c6

Browse files
committed
[qa] Reformatted code
1 parent a6f7adf commit 88269c6

File tree

7 files changed

+724
-725
lines changed

7 files changed

+724
-725
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@ name: Bug report
33
about: Open a bug report
44
title: "[bug] "
55
labels: bug
6-
assignees: ''
7-
6+
assignees: ""
87
---
98

109
**Describe the bug**
1110
A clear and concise description of the bug or unexpected behavior.
1211

1312
**Steps To Reproduce**
1413
Steps to reproduce the behavior:
14+
1515
1. Go to '...'
1616
2. Click on '....'
1717
3. Scroll down to '....'
@@ -24,6 +24,7 @@ A clear and concise description of what you expected to happen.
2424
If applicable, add screenshots to help explain your problem.
2525

2626
**System Informatioon:**
27-
- OS: [e.g. Ubuntu 24.04 LTS]
28-
- Docker version: [e.g. Docker version 27.0.3, build 7d4bcd8]
29-
- Browser and Browser Version (if applicable): [e.g. Chromium v126.0.6478.126]
27+
28+
- OS: [e.g. Ubuntu 24.04 LTS]
29+
- Docker version: [e.g. Docker version 27.0.3, build 7d4bcd8]
30+
- Browser and Browser Version (if applicable): [e.g. Chromium v126.0.6478.126]

.github/ISSUE_TEMPLATE/feature_request.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: Feature request
33
about: Suggest an idea for this project
44
title: "[feature] "
55
labels: enhancement
6-
assignees: ''
7-
6+
assignees: ""
87
---
98

109
**Is your feature request related to a problem? Please describe.**

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: Question
33
about: Please use the Discussion Forum to ask questions
44
title: "[question] "
55
labels: question
6-
assignees: ''
7-
6+
assignees: ""
87
---
98

109
Please use the [Discussion Forum](https://github.com/orgs/openwisp/discussions) to ask questions.

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ services:
128128
networks:
129129
default:
130130
aliases:
131-
- dashboard.internal
132-
- api.internal
131+
- dashboard.internal
132+
- api.internal
133133
ports:
134134
- "${NGINX_PORT:-80}:80"
135135
- "${NGINX_SSL_PORT:-443}:443"
Lines changed: 80 additions & 80 deletions
Original file line numberDiff line numberDiff line change
@@ -1,82 +1,82 @@
11
{
2-
"openvpn": [
3-
{
4-
"server": "10.8.0.0 255.255.255.0",
5-
"name": "default",
6-
"mode": "server",
7-
"proto": "udp",
8-
"port": 1194,
9-
"dev_type": "tun",
10-
"dev": "tun0",
11-
"local": "",
12-
"comp_lzo": "no",
13-
"auth": "SHA1",
14-
"cipher": "none",
15-
"engine": "",
16-
"ca": "ca.pem",
17-
"cert": "cert.pem",
18-
"key": "key.pem",
19-
"pkcs12": "",
20-
"ns_cert_type": "",
21-
"mtu_disc": "no",
22-
"mtu_test": false,
23-
"fragment": 0,
24-
"mssfix": 1450,
25-
"keepalive": "10 120",
26-
"persist_tun": true,
27-
"persist_key": true,
28-
"tun_ipv6": false,
29-
"up": "",
30-
"up_delay": 0,
31-
"down": "",
32-
"script_security": 1,
33-
"user": "nobody",
34-
"group": "nogroup",
35-
"mute": 0,
36-
"status": "/var/log/tun0.status",
37-
"status_version": 1,
38-
"mute_replay_warnings": false,
39-
"secret": "",
40-
"reneg_sec": 0,
41-
"tls_timeout": 2,
42-
"tls_cipher": "",
43-
"remote_cert_tls": "",
44-
"float": false,
45-
"fast_io": true,
46-
"log": "",
47-
"verb": 3,
48-
"topology": "p2p",
49-
"tls_server": true,
50-
"dh": "dh.pem",
51-
"crl_verify": "revoked.crl",
52-
"duplicate_cn": false,
53-
"client_to_client": false,
54-
"client_cert_not_required": false,
55-
"username_as_common_name": false,
56-
"auth_user_pass_verify": "",
57-
"tls_auth": ""
58-
}
59-
],
60-
"files": [
61-
{
62-
"path": "ca.pem",
63-
"mode": "0644",
64-
"contents": "{{ ca }}"
65-
},
66-
{
67-
"path": "cert.pem",
68-
"mode": "0644",
69-
"contents": "{{ cert }}"
70-
},
71-
{
72-
"path": "key.pem",
73-
"mode": "0644",
74-
"contents": "{{ key }}"
75-
},
76-
{
77-
"path": "dh.pem",
78-
"mode": "0644",
79-
"contents": "{{ dh }}"
80-
}
81-
]
2+
"openvpn": [
3+
{
4+
"server": "10.8.0.0 255.255.255.0",
5+
"name": "default",
6+
"mode": "server",
7+
"proto": "udp",
8+
"port": 1194,
9+
"dev_type": "tun",
10+
"dev": "tun0",
11+
"local": "",
12+
"comp_lzo": "no",
13+
"auth": "SHA1",
14+
"cipher": "none",
15+
"engine": "",
16+
"ca": "ca.pem",
17+
"cert": "cert.pem",
18+
"key": "key.pem",
19+
"pkcs12": "",
20+
"ns_cert_type": "",
21+
"mtu_disc": "no",
22+
"mtu_test": false,
23+
"fragment": 0,
24+
"mssfix": 1450,
25+
"keepalive": "10 120",
26+
"persist_tun": true,
27+
"persist_key": true,
28+
"tun_ipv6": false,
29+
"up": "",
30+
"up_delay": 0,
31+
"down": "",
32+
"script_security": 1,
33+
"user": "nobody",
34+
"group": "nogroup",
35+
"mute": 0,
36+
"status": "/var/log/tun0.status",
37+
"status_version": 1,
38+
"mute_replay_warnings": false,
39+
"secret": "",
40+
"reneg_sec": 0,
41+
"tls_timeout": 2,
42+
"tls_cipher": "",
43+
"remote_cert_tls": "",
44+
"float": false,
45+
"fast_io": true,
46+
"log": "",
47+
"verb": 3,
48+
"topology": "p2p",
49+
"tls_server": true,
50+
"dh": "dh.pem",
51+
"crl_verify": "revoked.crl",
52+
"duplicate_cn": false,
53+
"client_to_client": false,
54+
"client_cert_not_required": false,
55+
"username_as_common_name": false,
56+
"auth_user_pass_verify": "",
57+
"tls_auth": ""
58+
}
59+
],
60+
"files": [
61+
{
62+
"path": "ca.pem",
63+
"mode": "0644",
64+
"contents": "{{ ca }}"
65+
},
66+
{
67+
"path": "cert.pem",
68+
"mode": "0644",
69+
"contents": "{{ cert }}"
70+
},
71+
{
72+
"path": "key.pem",
73+
"mode": "0644",
74+
"contents": "{{ key }}"
75+
},
76+
{
77+
"path": "dh.pem",
78+
"mode": "0644",
79+
"contents": "{{ dh }}"
80+
}
81+
]
8282
}

tests/config.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
{
2-
"driver": "chromium",
3-
"headless": true,
4-
"app_url": "https://dashboard.openwisp.org",
5-
"api_url": "https://api.openwisp.org",
6-
"load_init_data": true,
7-
"logs": false,
8-
"logs_file": "/tmp/odocker.log",
9-
"username": "admin",
10-
"password": "admin",
11-
"services_max_retries": 25,
12-
"services_delay_retries": 5
2+
"driver": "chromium",
3+
"headless": true,
4+
"app_url": "https://dashboard.openwisp.org",
5+
"api_url": "https://api.openwisp.org",
6+
"load_init_data": true,
7+
"logs": false,
8+
"logs_file": "/tmp/odocker.log",
9+
"username": "admin",
10+
"password": "admin",
11+
"services_max_retries": 25,
12+
"services_delay_retries": 5
1313
}

0 commit comments

Comments
 (0)