inst 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. #!/bin/bash
  2. # Functions
  3. function inst_out
  4. {
  5. echo "[inst] $1"
  6. }
  7. function inst_fatal
  8. {
  9. inst_out "FATAL : $1"
  10. }
  11. function inst_fail
  12. {
  13. inst_fatal 'installation has failed'
  14. }
  15. # Welcome
  16. inst_out 'Script begins'
  17. # Check argument
  18. if [ $# -lt 1 ]
  19. then
  20. inst_fatal 'No script provided'
  21. inst_out 'Usage : inst <script> [user] [target]'
  22. exit 1
  23. fi
  24. # Initialize variables
  25. script=$1
  26. user=$USER
  27. target='/usr/local/bin/'
  28. if [ $# -gt 1 ] && [ ! -z $2 ]
  29. then
  30. user=$2
  31. fi
  32. if [ $# -gt 2 ] && [ ! -z $3 ]
  33. then
  34. target=$3
  35. fi
  36. # Check file existance
  37. if [ ! -e $script ]
  38. then
  39. inst_fatal "$script does not exist"
  40. exit 1
  41. fi
  42. # Prompt before installation
  43. inst_out 'Ready for installation'
  44. inst_out "script : $script"
  45. inst_out "user : $user"
  46. inst_out "target : $target"
  47. read -p 'Confirm installation ? [Y/n] > ' choice
  48. if [ ! -z $choice ] && [ "$choice" != 'Y' ]
  49. then
  50. inst_out 'Cancel installation'
  51. exit 0
  52. fi
  53. # Start installing
  54. inst_out 'Installation begins'
  55. # Check if script executable
  56. if [ -x $script ]
  57. then
  58. inst_out 'Script already executable'
  59. else
  60. if [ $USER != 'root' ]
  61. then
  62. inst_fatal "$script is not executable"
  63. inst_out 'to fix it :'
  64. inst_out "chmod u+x $script"
  65. inst_out 'or'
  66. inst_out "sudo $0 $script $user $target"
  67. exit 1
  68. else
  69. chmod u+x $script
  70. fi
  71. fi
  72. # Copy script
  73. cp "$script" "$target$script"
  74. if [ $? -ne 0 ]
  75. then
  76. inst_fatal 'Something went wrong during copy'
  77. inst_out "command : cp $script $target$script"
  78. exit $?
  79. fi
  80. # Chown
  81. if [ $USER = 'root' ]
  82. then
  83. chown "$user:$user" "$target$script"
  84. if [ $? -ne 0 ]
  85. then
  86. inst_fatal 'Something went wrong during chown'
  87. inst_out "chown $user:$user $target$script"
  88. exit $?
  89. fi
  90. fi
  91. # Check if all right
  92. output="$target$script"
  93. owner_user=`stat --format '%U' $output`
  94. owner_group=`stat --format '%G' $output`
  95. if [ ! -e $output ]
  96. then
  97. inst_fatal "$output does not exist"
  98. inst_fail
  99. exit 1
  100. elif [ $owner_user != $user ]
  101. then
  102. inst_fatal "$output owner user is not $user but $owner_user"
  103. inst_fail
  104. exit 1
  105. elif [ $owner_group != $user ]
  106. then
  107. inst_fatal "$output group is not $user but $owner_group"
  108. inst_fail
  109. exit 1
  110. elif [ ! -x $output ]
  111. then
  112. inst_fatal "$output is not executable"
  113. inst_out "fix : sudo chmod u+x $output"
  114. inst_fail
  115. exit 1
  116. fi
  117. # End
  118. inst_out 'Script finished'
  119. exit $?