aboutsummaryrefslogtreecommitdiff
blob: 3761e3019463b318b1cdeb6c2ed0134eb9a29a93 (plain)
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
#!/bin/bash
# vim: set fileencoding=utf-8 ts=4 sw=4 noexpandtab

# load config
: ${PORTICRON_CONF:=/etc/porticron.conf}

if [[ -r ${PORTICRON_CONF} ]]; then
	source ${PORTICRON_CONF}
fi


# detect some common variables
SCRIPT_NAME=$(basename $0)
FQDN=$(hostname --fqdn)
IP=$(dig +short ${FQDN} | tr '\n' ' ')
DATE=$(date -R)
PORTDIR=$(portageq portdir)


# sync if desired
${SYNC_CMD:-/usr/bin/emerge --sync} &>/dev/null
${SYNC_OVERLAYS_CMD:-/bin/true} &>/dev/null


# build a list of changed ebuilds
if [[ -n ${DIFF_CMD} ]]; then
	DIFF=$(${DIFF_CMD} 2>/dev/null)
fi

if [[ -n ${DIFF} ]]; then
	DIFF_MSG="${SCRIPT_NAME} has detected the following changes to ${PORTDIR}:

${DIFF}

========================================================================
"
fi


# build list of upgrades
: ${UPGRADE_OPTS:=--deep --update}
UPGRADE=$(/usr/bin/emerge ${UPGRADE_OPTS} --quiet --pretend world 2>/dev/null)

if [[ -n ${UPGRADE} ]]; then
	UPGRADE_MSG="
${SCRIPT_NAME} has detected that some packages need upgrading:

$(echo "${UPGRADE}" | sed 's/^\[/    [/')

========================================================================

You can perform the upgrade by issuing the command:

    emerge ${UPGRADE_OPTS} world

as root on ${FQDN}

It is recommended that you pretend the upgrade first to confirm that
the actions that would be taken are reasonable. The upgrade may be
pretended by issuing the command:

    emerge ${UPGRADE_OPTS} --pretend world

"
fi


# send mail
if [[ -z ${UPGRADE_MSG} && -z ${DIFF_MSG} ]]; then
	exit 0
fi

cat <<EOF | ${SENDMAIL:-/usr/sbin/sendmail} -t
To: ${RCPT:-root@${FQDN}}
From: root@${FQDN}
Subject: Gentoo package updates on ${FQDN} [ ${IP} ]
Date: ${DATE}

porticron report [${DATE}]
========================================================================
${DIFF_MSG}${UPGRADE_MSG}
--
${SCRIPT_NAME}
EOF


# GLSA check
GLSA_AFFECTED=$(/usr/bin/glsa-check --test --verbose affected 2>/dev/null)
GLSA_UPGRADES=$(/usr/bin/glsa-check --pretend affected | grep '^     ')

if [[ -n ${GLSA_AFFECTED} ]]; then
	GLSA_MSG="
${SCRIPT_NAME} has detected that this system is affected by the following GLSAs:

$(echo "${GLSA_AFFECTED}" | sed 's/^20/     20/')

========================================================================

The following updates should be performed for these GLSAs:

${GLSA_UPGRADES}
"
fi


# send mail
if [[ -z ${GLSA_MSG} ]]; then
	exit 0
fi

cat <<EOF | ${SENDMAIL:-/usr/sbin/sendmail} -t
To: ${RCPT:-root@${FQDN}}
From: root@${FQDN}
Subject: WARNING: Gentoo security updates on ${FQDN} [ ${IP} ]
Date: ${DATE}

porticron report [${DATE}]
========================================================================
${GLSA_MSG}
--
${SCRIPT_NAME}
EOF