copy-pluggable-stack-resources.sh 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. #!/bin/sh
  2. #
  3. # Licensed to the Apache Software Foundation (ASF) under one
  4. # or more contributor license agreements. See the NOTICE file
  5. # distributed with this work for additional information
  6. # regarding copyright ownership. The ASF licenses this file
  7. # to you under the Apache License, Version 2.0 (the
  8. # "License"); you may not use this file except in compliance
  9. # with the License. You may obtain a copy of the License at
  10. #
  11. # http://www.apache.org/licenses/LICENSE-2.0
  12. #
  13. # Unless required by applicable law or agreed to in writing,
  14. # software distributed under the License is distributed on an
  15. # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. # KIND, either express or implied. See the License for the
  17. # specific language governing permissions and limitations
  18. # under the License.
  19. #
  20. if [[ $# -eq 0 ]] ; then
  21. echo 'Usage: copy-pluggable-stack-resources.sh <stack.distribution>'
  22. exit 1
  23. fi
  24. resources_dir="../ambari-common/src/main/python/pluggable_stack_definition/resources/$1"
  25. if [ ! -d $resources_dir ];
  26. then
  27. echo "No resources to copy for [ $1 ]"
  28. exit 0
  29. fi
  30. echo "Copying pluggable stack resources for [ $1 ]"
  31. if [ -f "$resources_dir/custom-admin-ui.css" ]
  32. then
  33. echo cp $resources_dir/custom-admin-ui.css src/main/resources/ui/admin-web/app/styles/custom-admin-ui.css
  34. cp $resources_dir/custom-admin-ui.css src/main/resources/ui/admin-web/app/styles/custom-admin-ui.css
  35. fi