Mercurial > hg > config
view bin/ubuntu_updated.sh @ 869:ca1fb54c03ee
https://coderwall.com/p/7aymfa/please-oh-please-use-git-pull-rebase
author | Jeff Hammel <k0scist@gmail.com> |
---|---|
date | Mon, 10 Sep 2018 10:23:50 -0700 |
parents | 570ace9ed7c2 |
children |
line wrap: on
line source
#!/bin/bash set -e # script to update ubuntu # Ref: # http://mixeduperic.com/ubuntu/how-to-keep-your-ubuntu-server-updated-with-patches-and-security-fixes-using-the-command-line if sudo apt-get update -y then # -s = dry run # sudo apt-get -u -s -y upgrade sudo apt-get -u -y upgrade # TODO: sudo apt-get -u -s dist-upgrade fi # cleanup sudo apt -y autoremove