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.

114 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. sudo /opt/debian_bash/tools/idem_apt_install "${REQUIRED_PKGS[@]}"
  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