diff options
-rw-r--r-- | update-me.in | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/update-me.in b/update-me.in index ed95002..d57fa10 100644 --- a/update-me.in +++ b/update-me.in @@ -42,6 +42,10 @@ preCmds=('uname -n') cmds=() postCmds=('sync') +if command -v simply-report-installed-packages >/dev/null; then + postCmds+=('simply-report-installed-packages') +fi + for mp in '/' '/boot'; do mountpoint -q "${mp}" || continue mount \ @@ -67,7 +71,7 @@ if command -v check-kernel >/dev/null; then fi if command -v checkservices >/dev/null; then - postCmds+=(checkservices) + postCmds+=('checkservices') fi command_needs_root() { |