blob: 86e3e0ab78176c209781fb41e3a6f09f4ed90cd7 [file] [log] [blame]
Andrew Geissler6ce62a22020-11-30 19:58:47 -06001# Systemd expect a color capable pager, however the less provided
2# by busybox is not. This make many interaction with systemd pretty
3# annoying. As a workaround we disable the systemd pager if less
4# is not the GNU version.
5if ! less -V > /dev/null 2>&1 ; then
6 export SYSTEMD_PAGER=
7fi