diff options
author | hagbard <vyosdev@derith.de> | 2018-11-06 18:01:44 -0800 |
---|---|---|
committer | hagbard <vyosdev@derith.de> | 2018-11-07 12:42:52 -0800 |
commit | 3f33e3d1ce4e4a8dbcbdabd96763c87dfa4e2cff (patch) | |
tree | f20fb05eb458d4a59f456ede5e9659c14ce15f55 | |
parent | 92c15a6c1268eb28738899d85568d051124f8f51 (diff) | |
download | vyatta-op-3f33e3d1ce4e4a8dbcbdabd96763c87dfa4e2cff.tar.gz vyatta-op-3f33e3d1ce4e4a8dbcbdabd96763c87dfa4e2cff.zip |
Fixes T963: no authorization logs
-rw-r--r-- | debian/changelog | 7 | ||||
-rw-r--r-- | templates/show/log/authorization/node.def | 4 | ||||
-rw-r--r-- | templates/show/log/node.def | 4 |
3 files changed, 9 insertions, 6 deletions
diff --git a/debian/changelog b/debian/changelog index 1e1d6ca..af90bb7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +vyatta-op (0.14.0+vyos2+current8) unstable; urgency=medium + + * T963: no authorization logs + + + -- hagbard <vyosdev@derith.de> Wed, 07 Nov 2018 12:38:20 -0800 + vyatta-op (0.14.0+vyos2+current7) unstable; urgency=medium * T870: Commit-confirm restarts the server even after commit diff --git a/templates/show/log/authorization/node.def b/templates/show/log/authorization/node.def index 80686a0..637943f 100644 --- a/templates/show/log/authorization/node.def +++ b/templates/show/log/authorization/node.def @@ -1,4 +1,2 @@ help: Show listing of authorization attempts -run: less $_vyatta_less_options \ - --prompt=".log, page %dt of %D" \ - -- /var/log/auth.log +run: sudo /bin/journalctl -q SYSLOG_FACILITY=10 SYSLOG_FACILITY=4 diff --git a/templates/show/log/node.def b/templates/show/log/node.def index 3d37d84..a4f494f 100644 --- a/templates/show/log/node.def +++ b/templates/show/log/node.def @@ -1,4 +1,2 @@ help: Show contents of current master log file -run: less $_vyatta_less_options \ - --prompt=".log, page %dt of %D" \ - -- /var/log/messages +run: sudo /bin/journalctl |