| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
|
| |
Pass "-h" to highlight individual words.
"-h" stands for "highlight".
$ NM-log -h wlan0 j
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
|
|
| |
It only makes sense to call delete() with NMPObjects that
we obtained from the platform cache. Otherwise, if we didn't
get it from the cache in the first place, we wouldn't know
what to delete.
Hence, the input argument is (almost) always an NMPObject
in the first place. That is different from add(), where
we might create a new specific NMPlatform* instance on the
stack. For add() it makes slightly more sense to have different
functions depending on the type. For delete(), it doesn't.
|
| |
|
|
|
|
|
| |
GNU less supports filters. That makes it nice to use instead of cat.
Also, less is well suited for output to a pipe.
With this, `NM-log nm-log.txt.gz` works as you would expect
|
| |
|
|
|
|
|
|
| |
Older logfiles contain
platform: route: adding or updating IPv4 route: 10.1.0
Hightlight that too.
|
| |
|
|
| |
Fixes: 9344013977bee9d17413a4ab18ad13a4b2244ac3
|
| | |
|
| |
|
|
|
| |
When sourcing the file, using exec inside NM-show-journal is a bad idea,
because it replaces the calling shell.
|
| |
|
|
|
| |
I find it annoying when ^C exits less and it prompts me to often
do `NM-log | less -R` instead.
|
| |
|
|
|
| |
Must not colorize the trailing space, otherwise the following
" device" will no longer match.
|
| |
|
|
|
|
|
|
| |
- remove "\r\n" line endings
- colorize <warn> and <error> in red
- extend matching the info levels to include the timestamp. This
(intentionally) will no longer highlight messages from ModemManager,
which don't include a timestamp.
|
| |
|
|
|
|
|
|
|
|
| |
- use "grep -a" so that grep doesn't refuse to work in binary input.
- make the script source-able to only define the NM-colorize and
NM-show-journal
- In case the script is sourced, it also defines a NM-log function,
which does the same as the script itself.
- rename internal functions so that they have names starting with "NM"
in case of sourcing.
|
| |
|
|
| |
To pretty print and colorize NetworkManager logfiles.
|
| | |
|
| | |
|
| | |
|
| |
|
|
|
| |
It is necessary, for example, for this to work:
verify-x509-name "C=US, L=Cambridge, CN=GNOME, emailAddress=networkmanager-list@gnome.org" subject
|
| |
|
|
| |
https://git.gnome.org/browse/network-manager-openvpn/commit/?id=b51b3562ce079cc0be426e968fe1c90faadc0efd
|
| |
|
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=769177
https://bugzilla.redhat.com/show_bug.cgi?id=1355688
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=833166
https://git.gnome.org/browse/network-manager-openvpn/commit/?id=62bdd278d69cc396479af9d05a0b776d5ad386bf
|
| | |
|
| |
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=719430
https://git.gnome.org/browse/network-manager-openvpn/commit/?id=644e55ed404edbc953e323d13c57297b53cc0f8b
|
| |
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=763484
https://git.gnome.org/browse/network-manager-openvpn/commit/?id=d7a84afe1d1948c7990a08b18913e65550c222a0
|
| |
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=720097
https://git.gnome.org/browse/network-manager-openvpn/commit/?id=c4d45e51280d5b0cb8c5e8f826d68c3262162080
|
| |
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=761907
https://git.gnome.org/browse/network-manager-openvpn/commit/?id=ffda527d8a932f2e3419d6c64623540e5b190d9e
|
| |
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=753578
https://git.gnome.org/browse/network-manager-openvpn/commit/?id=4eb5f3ad43cdc62c6d4d254731e24c90b87ba91a
|
| |
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=651657
https://git.gnome.org/browse/network-manager-openvpn/commit/?id=6afd16bcacd87a019e12f4df0d63a9e0e8c94e9e
|
| |
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=651657
https://git.gnome.org/browse/network-manager-openvpn/commit/?id=054cc997ca38e5d786859fa6d032c4404af3d28a
|
| | |
|
| | |
|
| |
|
|
|
|
| |
https://bugzilla.gnome.org/show_bug.cgi?id=737108
Signed-off-by: Jiří Klimeš <jklimes@redhat.com>
|
| |
|
|
| |
see https://bugzilla.redhat.com/show_bug.cgi?id=1194643
|
| |
|
|
| |
VPN configs to NM
|
| | |
|
|
|
Synopsis:
$ nm-import-openvpn -i <infile1> <infile2> ...
$ nm-import-openvpn <infile> <outfile>
Put the file to NetworkManager:
# cp <outfile> /etc/NetworkManager/system-connections/
# chmod 600 /etc/NetworkManager/system-connections/<outfile>
# nmcli con load /etc/NetworkManager/system-connections/<outfile>
|