mirror of
https://github.com/dustinkirkland/byobu
synced 2025-08-19 21:13:19 -07:00
* usr/bin/purge-old-kernels:
- use apt-get, rather than apt, for compatibility with trusty/precise apt
This commit is contained in:
parent
2d571ceaed
commit
9aa9bb8aff
2 changed files with 5 additions and 3 deletions
3
debian/changelog
vendored
3
debian/changelog
vendored
|
@ -1,6 +1,7 @@
|
||||||
byobu (5.114) unreleased; urgency=medium
|
byobu (5.114) unreleased; urgency=medium
|
||||||
|
|
||||||
* UNRELEASED
|
* usr/bin/purge-old-kernels:
|
||||||
|
- use apt-get, rather than apt, for compatibility with trusty/precise apt
|
||||||
|
|
||||||
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 07 Dec 2016 08:18:12 -0600
|
-- Dustin Kirkland <kirkland@ubuntu.com> Wed, 07 Dec 2016 08:18:12 -0600
|
||||||
|
|
||||||
|
|
|
@ -65,5 +65,6 @@ if [ -z "$PURGE" ]; then
|
||||||
exit 0
|
exit 0
|
||||||
fi
|
fi
|
||||||
|
|
||||||
apt $APT_OPTS remove --purge $PURGE
|
# Use apt-get, rather than apt, for compatibility with precise/trusty
|
||||||
apt $APT_OPTS autoremove --purge
|
apt-get $APT_OPTS remove --purge $PURGE
|
||||||
|
apt-get $APT_OPTS autoremove --purge
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue