Maksim Usmanov | Maks 3acd228169
Fix for nginx exclude
There are some ways to fix this

First put nginx at the beginig or modify this line

software=$(echo "$software" | sed -e "s/^nginx//")
Replacing it by this one:
software=$(echo "$software" | sed -e "s/nginx//")
Or by this:
software=$(echo "$software" | sed -e "s/ nginx//")
2019-04-28 16:03:54 +02:00
..
2019-04-15 13:33:09 +03:00
2019-04-15 21:00:12 +03:00
2019-03-21 21:25:27 +01:00
2019-04-20 03:07:10 +03:00
2019-04-15 13:33:09 +03:00
2019-04-28 16:03:54 +02:00