Summary: add lubuntu-update-notifier to seed, add dch -r "" to updates script Test Plan: see if lubuntu update notifier is in iso, check update script Reviewers: wxl, tsimonq2 Reviewed By: tsimonq2 Subscribers: apt-ghetto Differential Revision: https://phab.lubuntu.me/D57
16 lines
240 B
Bash
Executable File
16 lines
240 B
Bash
Executable File
#! /bin/sh
|
|
|
|
if ! which dch >/dev/null; then
|
|
echo >&2 "Please install devscripts."
|
|
exit 1
|
|
fi
|
|
|
|
if ! which debootstrap >/dev/null; then
|
|
echo >&2 "Please install debootstrap."
|
|
exit 1
|
|
fi
|
|
|
|
exec germinate-update-metapackage --vcs
|
|
|
|
dch -r \"\"
|