Skip to content

Commit 363a79e

Browse files
committed
Changed comments and meta data
1 parent ce9b31c commit 363a79e

File tree

7 files changed

+134
-159
lines changed

7 files changed

+134
-159
lines changed

.editorconfig

+2-12
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,12 @@
1-
# Editor Configuration Normalization
2-
#
3-
# @see http://editorconfig.org/
1+
; http://editorconfig.org/
42

5-
# This is the top-most .editorconfig file; do not search in parent directories.
63
root = true
74

8-
# All files.
95
[*]
106
charset = UTF-8
117
end_of_line = LF
128
indent_size = 4
13-
indent_style = space
9+
indent_style = tab
1410
insert_final_newline = true
1511
tab_width = 4
1612
trim_trailing_whitespace = true
17-
18-
[*.md]
19-
trim_trailing_whitespace = false
20-
21-
[{M,m}akefile]
22-
indent_style = tab

.gitattributes

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
11
# Git Normalization
22

3-
* text=auto eol=lf
3+
* text=auto eol=lf
4+
.* text eol=lf
5+
*.md text eol=lf
6+
/defaults text eol=lf
7+
/init text eol=lf
8+
/makefile text eol=lf
9+
/UNLICENSE text eol=lf
10+
11+
/.editorconfig export-ignore
12+
/.gitattributes export-ignore
13+
/.gitignore export-ignore
14+
/README.md export-ignore
15+
/UNLICENSE export-ignore

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/.idea
1+
/.idea/

README.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ make
1111
```
1212

1313
## Usage
14-
You can use it via the `service` command or by directly invoking the shell script in `/etc/init.d`; what you like best.
15-
Your shell will have auto-completion for the various keywords that are available, for instance if you type `service
14+
You can use it via the `service` command or by directly invoking the shell script in `/etc/init.d`; what you like best.
15+
Your shell will have auto-completion for the various keywords that are available, for instance if you type `service
1616
nginx res` just hit tab for auto-completion.
1717

1818
```shell
@@ -27,6 +27,8 @@ service nginx stop
2727

2828
## Weblinks
2929
* [LSBInitScripts - Debian Wiki](https://wiki.debian.org/LSBInitScripts)
30+
* LSB Core Spec: [Init Script Actions: Exit Codes](http://refspecs.linuxfoundation.org/LSB_3.1.0/LSB-Core-generic/LSB-Core-generic/iniscrptact.html)
31+
* [Ubuntu pastebin](http://paste.ubuntu.com/6918156/)
3032

3133
## License
3234
> This is free and unencumbered software released into the public domain.

defaults

-8
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,5 @@
11
#!/bin/sh
22

3-
# ------------------------------------------------------------------------------
4-
# Defaults for nginx SysVinit script.
5-
#
6-
# @author Richard Fussenegger <[email protected]>
7-
# @copyright 2013-15 Richard Fussenegger
8-
# @license http://unlicense.org/ PD
9-
# ------------------------------------------------------------------------------
10-
113
# Canonical absolute path to the PID file.
124
#
135
# DEFAULT: /run/nginx.pid

0 commit comments

Comments
 (0)