You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
415 B

  1. #!/bin/bash
  2. set +eux
  3. apt-get update
  4. apt-get -y --force-yes install bash-completion wget bzip2 git-core \
  5. less python-software-properties tmux mosh \
  6. sudo git </dev/null
  7. case $(lsb_release -is) in
  8. Ubuntu)
  9. apt-get -y --force-yes language-pack-en </dev/null
  10. ;;
  11. Debian)
  12. sed -ri 's/^\s*#\s*(en_US\.UTF-?8.*)\s*$/\1/g' /etc/locale.gen
  13. locale-gen
  14. ;;
  15. esac