Packages: all CRLF newlines in examples converted to LF.

This commit is contained in:
Andrei Belov
2018-10-05 14:10:13 +03:00
parent ea62327b00
commit 6c5e5f25ef
6 changed files with 126 additions and 126 deletions

View File

@@ -1,15 +1,15 @@
{ {
"applications": { "applications": {
"example_go": { "example_go": {
"type": "go", "type": "go",
"user": "nobody", "user": "nobody",
"executable": "/tmp/go-app" "executable": "/tmp/go-app"
} }
}, },
"listeners": { "listeners": {
"*:8500": { "*:8500": {
"application": "example_go" "application": "example_go"
} }
} }
} }

View File

@@ -1,15 +1,15 @@
{ {
"applications": { "applications": {
"example_go": { "example_go": {
"type": "go", "type": "go",
"user": "nobody", "user": "nobody",
"executable": "/tmp/go1.10-app" "executable": "/tmp/go1.10-app"
} }
}, },
"listeners": { "listeners": {
"*:8500": { "*:8500": {
"application": "example_go" "application": "example_go"
} }
} }
} }

View File

@@ -1,15 +1,15 @@
{ {
"applications": { "applications": {
"example_go": { "example_go": {
"type": "go", "type": "go",
"user": "nobody", "user": "nobody",
"executable": "/tmp/go1.7-app" "executable": "/tmp/go1.7-app"
} }
}, },
"listeners": { "listeners": {
"*:8500": { "*:8500": {
"application": "example_go" "application": "example_go"
} }
} }
} }

View File

@@ -1,15 +1,15 @@
{ {
"applications": { "applications": {
"example_go": { "example_go": {
"type": "go", "type": "go",
"user": "nobody", "user": "nobody",
"executable": "/tmp/go1.8-app" "executable": "/tmp/go1.8-app"
} }
}, },
"listeners": { "listeners": {
"*:8500": { "*:8500": {
"application": "example_go" "application": "example_go"
} }
} }
} }

View File

@@ -1,15 +1,15 @@
{ {
"applications": { "applications": {
"example_go": { "example_go": {
"type": "go", "type": "go",
"user": "nobody", "user": "nobody",
"executable": "/tmp/go1.9-app" "executable": "/tmp/go1.9-app"
} }
}, },
"listeners": { "listeners": {
"*:8500": { "*:8500": {
"application": "example_go" "application": "example_go"
} }
} }
} }

View File

@@ -1,51 +1,51 @@
{ {
"applications": { "applications": {
"example_php": { "example_php": {
"type": "php", "type": "php",
"user": "nobody", "user": "nobody",
"processes": 2, "processes": 2,
"root": "/usr/share/doc/unit/examples/php-app", "root": "/usr/share/doc/unit/examples/php-app",
"index": "index.php" "index": "index.php"
}, },
"example_python": { "example_python": {
"type": "python", "type": "python",
"user": "nobody", "user": "nobody",
"processes": 2, "processes": 2,
"path": "/usr/share/doc/unit/examples/python-app", "path": "/usr/share/doc/unit/examples/python-app",
"module": "wsgi" "module": "wsgi"
}, },
"example_go": { "example_go": {
"type": "go", "type": "go",
"user": "nobody", "user": "nobody",
"executable": "/tmp/go-app" "executable": "/tmp/go-app"
}, },
"example_perl": { "example_perl": {
"type": "perl", "type": "perl",
"user": "nobody", "user": "nobody",
"processes": 1, "processes": 1,
"working_directory": "/usr/share/doc/unit-perl/examples/perl-app", "working_directory": "/usr/share/doc/unit-perl/examples/perl-app",
"script": "/usr/share/doc/unit-perl/examples/perl-app/index.pl" "script": "/usr/share/doc/unit-perl/examples/perl-app/index.pl"
} }
}, },
"listeners": { "listeners": {
"*:8300": { "*:8300": {
"application": "example_php" "application": "example_php"
}, },
"*:8400": { "*:8400": {
"application": "example_python" "application": "example_python"
}, },
"*:8500": { "*:8500": {
"application": "example_go" "application": "example_go"
}, },
"*:8600": { "*:8600": {
"application": "example_perl" "application": "example_perl"
} }
} }
} }