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.

111 lines
2.7 KiB

5 years ago
2 years ago
5 years ago
4 years ago
3 years ago
1 year ago
5 years ago
5 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 fullfill /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" || return
  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 || return
  26. ./install.sh "$PARAM1"
  27. rm -rf "$TEMP"
  28. exit 0
  29. fi
  30. else
  31. echo "--------------------------------"
  32. echo "debian-bash has been deprecated!"
  33. echo "--------------------------------"
  34. read -rn1 -p 'Would you like to migrate to the new project named `miaou-bash`, (yN)?' answer
  35. [[ -z "$PS1" ]] && answer='y'
  36. if [[ "$answer" == 'y' ]];then
  37. pushd /tmp
  38. pushd /opt/debian-bash
  39. ./uninstall.sh
  40. popd
  41. rm -rf /opt/debian-bash
  42. curl https://git.artcode.re/miaou/miaou-bash/raw/branch/main/install.sh | sudo bash -s
  43. source /etc/bash.bashrc
  44. exit 0
  45. fi
  46. echo "cancelled!"
  47. exit 1
  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