github.com/altoros/juju-vmware@v0.0.0-20150312064031-f19ae857ccca/upgrades/rsysloggnutls.go (about) 1 // Copyright 2014 Canonical Ltd. 2 // Licensed under the AGPLv3, see LICENCE file for details. 3 4 package upgrades 5 6 import "github.com/juju/utils/apt" 7 8 // installRsyslogGnutls installs the rsyslog-gnutls package, 9 // which is required for our rsyslog configuration from 1.18.0. 10 func installRsyslogGnutls(context Context) error { 11 return apt.GetInstall("rsyslog-gnutls") 12 }