Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. Update the local package cache and upgrade all installed packages.

    Code Block
    languagebash
    # Update repo cache
    sudo apt-get -y update
    
    # Upgrade all packages
    sudo apt -y dist-upgrade
    
    # Remove unused dependency packages for all modules except build-dep
    sudo apt -y autoremove
Info

This task is included in the Bitbucket repo “UMD-iSchool-IT/ansible-role-base” by “tasks/apt.yml”

...