09-05-2015, 04:06 AM
I've decided to err on the side of caution. Removing this wallpaper is the best solution despite the mixed results.
I've added a postinst script to lite-software that will remove Entrance.jpg.
Releases affected: 2.0, 2.2, 2.4, 2.6
Code of postinst:
This code will stay in LL until the end of Series 2.
Entrance.jpg will not appear in any more versions of LL and has been removed from the dev builds.
In future, all Wallpapers will be scanned before going into Linux Lite.
Social Media announcements have been placed informing the wider public.
Run Menu, Favorites, Install Updates and the wallpaper will be deleted.
I've added a postinst script to lite-software that will remove Entrance.jpg.
Releases affected: 2.0, 2.2, 2.4, 2.6
Code of postinst:
Code:
#! /bin/sh
# A collection of postinst actions for Linux Lite
# postinst script for wallpaper removal
# Date: 04/09/15
# Time: 23:51 (EST)
# As reported here - https://www.freecinema2022.gq/forums/other/virus-detected-on-lite-2-6-wallpapers/
set -e
cd /usr/share/backgrounds/xfce/
sudo rm -rf Entrance.jpg
This code will stay in LL until the end of Series 2.
Entrance.jpg will not appear in any more versions of LL and has been removed from the dev builds.
In future, all Wallpapers will be scanned before going into Linux Lite.
Social Media announcements have been placed informing the wider public.
Run Menu, Favorites, Install Updates and the wallpaper will be deleted.