aboutsummaryrefslogtreecommitdiffstats
path: root/src/libimcv/plugins
diff options
context:
space:
mode:
authorAndreas Steffen <andreas.steffen@strongswan.org>2014-04-24 09:08:07 +0200
committerAndreas Steffen <andreas.steffen@strongswan.org>2014-04-24 09:08:07 +0200
commitf5a1cfe3f8ad295d7a57a520e64e36dd64b64e9e (patch)
treeba591d9e363210901f15e4147491f8377cea89b2 /src/libimcv/plugins
parent95083fc6fb6ad13b9055f3df594e7f5ba77332dc (diff)
downloadstrongswan-f5a1cfe3f8ad295d7a57a520e64e36dd64b64e9e.tar.bz2
strongswan-f5a1cfe3f8ad295d7a57a520e64e36dd64b64e9e.tar.xz
pacman.sh now fetches Ubuntu 14.04 security updates
Diffstat (limited to 'src/libimcv/plugins')
-rwxr-xr-xsrc/libimcv/plugins/imv_os/pacman.sh23
1 files changed, 22 insertions, 1 deletions
diff --git a/src/libimcv/plugins/imv_os/pacman.sh b/src/libimcv/plugins/imv_os/pacman.sh
index 3dfea3905..fcf35b644 100755
--- a/src/libimcv/plugins/imv_os/pacman.sh
+++ b/src/libimcv/plugins/imv_os/pacman.sh
@@ -3,7 +3,7 @@
DIR="/etc/pts"
DATE=`date +%Y%m%d-%H%M`
UBUNTU="http://security.ubuntu.com/ubuntu/dists"
-UBUNTU_VERSIONS="saucy raring quantal precise lucid"
+UBUNTU_VERSIONS="trusty saucy raring quantal precise lucid"
UBUNTU_DIRS="main multiverse restricted universe"
UBUNTU_ARCH="binary-amd64 binary-i386"
DEBIAN="http://security.debian.org/dists"
@@ -44,6 +44,27 @@ do
done
done
+for f in trusty-security/binary-amd64/*
+do
+ $PACMAN --product "Ubuntu 14.04 x86_64" --file $f --security >> $PACMAN_LOG
+done
+echo
+for f in trusty-updates/binary-amd64/*
+do
+ $PACMAN --product "Ubuntu 14.04 x86_64" --file $f >> $PACMAN_LOG
+done
+echo
+for f in trusty-security/binary-i386/*
+do
+ $PACMAN --product "Ubuntu 14.04 i686" --file $f --security >> $PACMAN_LOG
+done
+echo
+for f in trusty-updates/binary-i386/*
+do
+ $PACMAN --product "Ubuntu 14.04 i686" --file $f >> $PACMAN_LOG
+done
+echo
+
for f in saucy-security/binary-amd64/*
do
$PACMAN --product "Ubuntu 13.10 x86_64" --file $f --security >> $PACMAN_LOG