This file is indexed.

/etc/cron.daily/welcome2l is in welcome2l 3.04-25.

This file is owned by root:root, with mode 0o755.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/bin/sh
# 
# In its default init script, the welcome2l is called with the `-xmasauto' 
# option. This script runs the init script and update /etc/issue daily 
# to make sure that we don't miss Xmas :)
# 
# Please read /usr/share/doc/welcome2l/INSTALL.gz for details.
# 

test -x /usr/bin/welcome2l || exit 0

PATH="/sbin:/usr/sbin:/bin:/usr/bin"

set -e 

# welcome2l displays the `Login on' line 
# only if stdin is connected to a terminal...
exec < /dev/console > /dev/null

if  which invoke-rc.d >/dev/null 2>&1; then
    invoke-rc.d welcome2l restart
else
    /etc/init.d/welcome2l restart
fi


exit 0