diff options
author | Joshua Powers <josh.powers@canonical.com> | 2017-04-10 16:30:33 -0700 |
---|---|---|
committer | Scott Moser <smoser@brickies.net> | 2017-04-21 13:18:46 -0400 |
commit | b613de733fa7cfbf94666410f252b640019be205 (patch) | |
tree | ef26e4d1ce4a9fb566196638f34916e632c456f0 | |
parent | 73a97b1deafb0569dba5e94f2c663fac0fe522d9 (diff) | |
download | vyos-cloud-init-b613de733fa7cfbf94666410f252b640019be205.tar.gz vyos-cloud-init-b613de733fa7cfbf94666410f252b640019be205.zip |
rsyslog: replace ~ with stop
The discard action (tilde character) has been replaced by the
“stop” RainerScript directive. It is considered more intuitive and
offers slightly better performance.
The tilde operator was deprecated in rsyslog 7. Distributions
using rsyslog older than that will need to patch.
LP: #1367899
-rw-r--r-- | tools/21-cloudinit.conf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/21-cloudinit.conf b/tools/21-cloudinit.conf index c65325c1..150d800f 100644 --- a/tools/21-cloudinit.conf +++ b/tools/21-cloudinit.conf @@ -3,4 +3,4 @@ # comment out the following line to allow CLOUDINIT messages through. # Doing so means you'll also get CLOUDINIT messages in /var/log/syslog -& ~ +& stop |