diff options
| author | Dmitri Pal <dpal@redhat.com> | 2009-02-26 16:32:20 -0500 |
|---|---|---|
| committer | Dmitri Pal <dpal@redhat.com> | 2009-02-26 16:32:20 -0500 |
| commit | 8fb404ff3d803964764452f7e027ded5bf1d85b3 (patch) | |
| tree | 472d7b69f545208fc54780fa8dbfcef1b6f4eb70 /etc | |
| parent | acb92e98ab01d5582d52737a7ad89919a00458aa (diff) | |
| download | elapi_draft-8fb404ff3d803964764452f7e027ded5bf1d85b3.tar.gz elapi_draft-8fb404ff3d803964764452f7e027ded5bf1d85b3.tar.xz elapi_draft-8fb404ff3d803964764452f7e027ded5bf1d85b3.zip | |
Major changes. Added high level API. Unstable. Checkin before testing.
Diffstat (limited to 'etc')
| -rw-r--r-- | etc/file_defaults.conf | 0 | ||||
| -rw-r--r-- | etc/file_defaults.d/my_app1.conf | 8 | ||||
| -rw-r--r-- | etc/file_defaults.d/my_app1.conf~ | 8 | ||||
| -rw-r--r-- | etc/file_defaults.d/my_app2.conf | 8 | ||||
| -rw-r--r-- | etc/file_defaults.d/my_app2.conf~ | 17 |
5 files changed, 41 insertions, 0 deletions
diff --git a/etc/file_defaults.conf b/etc/file_defaults.conf new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/etc/file_defaults.conf diff --git a/etc/file_defaults.d/my_app1.conf b/etc/file_defaults.d/my_app1.conf new file mode 100644 index 0000000..32cdfaf --- /dev/null +++ b/etc/file_defaults.d/my_app1.conf @@ -0,0 +1,8 @@ +; This is the test application configuration +; Log into the given file: + +file_name=/tmp/log1 + +; Open once and keep open (default is 1) + +keep_open=1 diff --git a/etc/file_defaults.d/my_app1.conf~ b/etc/file_defaults.d/my_app1.conf~ new file mode 100644 index 0000000..33f860c --- /dev/null +++ b/etc/file_defaults.d/my_app1.conf~ @@ -0,0 +1,8 @@ +; This is the test application configuration +; Log into the given file: + +file_name=/tmp/log1 + +; Open once and keep open + +keep_open=1 diff --git a/etc/file_defaults.d/my_app2.conf b/etc/file_defaults.d/my_app2.conf new file mode 100644 index 0000000..da3a8a0 --- /dev/null +++ b/etc/file_defaults.d/my_app2.conf @@ -0,0 +1,8 @@ +; This is the test application configuration +; Log into the given file: + +file_name=/tmp/log2 + +; Open once and keep open (default is 1) + +keep_open=0 diff --git a/etc/file_defaults.d/my_app2.conf~ b/etc/file_defaults.d/my_app2.conf~ new file mode 100644 index 0000000..fe5846a --- /dev/null +++ b/etc/file_defaults.d/my_app2.conf~ @@ -0,0 +1,17 @@ +; This is the test application configuration +; Identify myself as "TESTAPP" +; See /usr/include/sys/syslog.h for more details + +identity="TESTAPP" + +; Default option is to include PID + +option = 1 + +; Level is LOG_INFO. + +level = 6 + +; Facility is LOG_AUTHPRIV (upper 28 bits) 10<<3 + +facility = 80 |
