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.

115 lines
2.6 KiB

5 years ago
2 years ago
5 years ago
4 years ago
3 years ago
4 years ago
5 years ago
5 years ago
4 years ago
4 years ago
5 years ago
5 years ago
4 years ago
4 years ago
  1. #!/bin/bash
  2. CURDIR=$PWD
  3. REQUIRED_PKGS=(file git bc)
  4. function usage() {
  5. echo 'usage: --host | --containers | --full | --one-container <CT_NAME>'
  6. exit -1
  7. }
  8. function install_host() {
  9. echo "install on: $HOSTNAME"
  10. echo ----------------------
  11. [ $(id -u) -ne 0 ] && echo 'root privilege required' && exit 1
  12. if [[ ! $CURDIR == '/opt/debian-bash' ]]; then
  13. # download and filfull /opt/debian-bash, then run it from folder
  14. if [[ -L /opt/debian-bash ]]; then
  15. cd /opt/debian-bash && ./install.sh "$PARAM1"
  16. exit 0
  17. else
  18. rm -rf /opt/debian-bash
  19. TEMP=$(mktemp -d)
  20. cd $TEMP
  21. echo $TEMP
  22. wget https://git.artcode.re/pvincent/debian-bash/archive/master.tar.gz
  23. tar -xzf master.tar.gz
  24. mv debian-bash /opt/
  25. cd /opt/debian-bash
  26. ./install.sh $PARAM1
  27. rm -rf $TEMP
  28. exit 0
  29. fi
  30. else
  31. #remove /etc/skel/.bashrc
  32. if [ -e /etc/skel/.bashrc ]; then
  33. rm /etc/skel/.bashrc
  34. fi
  35. ORIGINAL="ORIGINAL"
  36. declare -a arr=(/etc/bash.bashrc /etc/inputrc /etc/vim/vimrc)
  37. for i in "${arr[@]}"; do
  38. if [ ! -f "$i.$ORIGINAL" ]; then
  39. echo "$i needs installation $(basename $i)"
  40. mv "$i" "$i.$ORIGINAL"
  41. ln -s "$CURDIR/$(basename $i)" "$i"
  42. else
  43. echo "$i" already overriden
  44. fi
  45. done
  46. apt update
  47. apt install -y "${REQUIRED_PKGS[@]}"
  48. fi
  49. }
  50. function install_containers() {
  51. echo "install containers"
  52. echo --------------------
  53. # install inside active LXC containers
  54. if [[ -f '/snap/bin/lxc' ]]; then
  55. for container in $(/snap/bin/lxc list --format=json | yq '.[] | select(.state.status == "Running") | .name' -); do
  56. install_one_container $container
  57. echo
  58. done
  59. fi
  60. }
  61. function install_one_container() {
  62. CT=$1
  63. echo "install container <$CT>"
  64. echo -------------------------
  65. # install inside one active LXC container
  66. if [[ -f '/snap/bin/lxc' ]]; then
  67. echo "pushed to $CT"
  68. /snap/bin/lxc file push /opt/debian-bash "${CT}/opt/" -r
  69. /snap/bin/lxc exec "$CT" -- sh -c "cd /opt/debian-bash && ./install.sh --host"
  70. fi
  71. }
  72. PARAM1=$1
  73. case $PARAM1 in
  74. "--host")
  75. install_host
  76. ;;
  77. "--containers")
  78. install_containers
  79. ;;
  80. "--one-container")
  81. CT=$2
  82. if [ ! -z $CT ]; then
  83. install_one_container $CT
  84. else
  85. usage
  86. fi
  87. ;;
  88. "--full")
  89. install_host
  90. install_containers
  91. ;;
  92. *)
  93. usage
  94. ;;
  95. esac