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.

109 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. if [[ "$answer" == 'y' ]];then
  36. pushd /tmp
  37. pushd /opt/debian-bash
  38. ./uninstall.sh
  39. popd
  40. rm -rf /opt/debian-bash
  41. curl https://git.artcode.re/miaou/miaou-bash/raw/branch/main/install.sh | sudo bash -s
  42. source /etc/bash.bashrc
  43. exit 0
  44. fi
  45. echo "cancelled!"
  46. exit 1
  47. fi
  48. }
  49. function install_containers() {
  50. echo "install containers"
  51. echo --------------------
  52. # install inside active LXC containers
  53. if [[ -f '/snap/bin/lxc' ]]; then
  54. for container in $(/snap/bin/lxc list --format=json | yq '.[] | select(.state.status == "Running") | .name' -); do
  55. install_one_container "$container"
  56. echo
  57. done
  58. fi
  59. }
  60. function install_one_container() {
  61. CT=$1
  62. echo "install container <$CT>"
  63. echo -------------------------
  64. # install inside one active LXC container
  65. if [[ -f '/snap/bin/lxc' ]]; then
  66. echo "pushed to $CT"
  67. /snap/bin/lxc file push /opt/debian-bash "${CT}/opt/" -r
  68. /snap/bin/lxc exec "$CT" -- sh -c "cd /opt/debian-bash && ./install.sh --host"
  69. fi
  70. }
  71. PARAM1=$1
  72. case $PARAM1 in
  73. "--host")
  74. install_host
  75. ;;
  76. "--containers")
  77. install_containers
  78. ;;
  79. "--one-container")
  80. CT=$2
  81. if [ ! -z "$CT" ]; then
  82. install_one_container "$CT"
  83. else
  84. usage
  85. fi
  86. ;;
  87. "--full")
  88. install_host
  89. install_containers
  90. ;;
  91. *)
  92. usage
  93. ;;
  94. esac