apply_update.sh 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  1. #!/bin/bash
  2. #
  3. # Copyright (c) 2019 Clementine Computing LLC.
  4. #
  5. # This file is part of PopuFare.
  6. #
  7. # PopuFare is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (at your option) any later version.
  11. #
  12. # PopuFare is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with PopuFare. If not, see <https://www.gnu.org/licenses/>.
  19. #
  20. ## Wrapper script to handle legacy updates if need be.
  21. ##
  22. update_file="$1"
  23. update_checksum="$2"
  24. file_size="$3"
  25. server_path="$4"
  26. file_version="$5"
  27. if tar -tf $update_file popufare.witness > /dev/null 2>&1 ; then
  28. echo "apply_update.sh: Found popufare.witness in $update_file, assuming a Popufare installation tarball..."
  29. /home/bus/bin/apply_update_popufare.sh $update_file $update_checksum $file_size $server_path $file_version
  30. else
  31. echo "apply_update.sh: Could not find popufare.witness in $update_file, assuming a legacy install..."
  32. /home/bus/bin/apply_update_legacy.sh $update_file $update_checksum $file_size $server_path $file_version
  33. fi