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.

22 lines
488 B

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