blob: 35f195b213f4c6be0c52059d85d851209a9ef515 [file] [log] [blame]
#!/usr/bin/env python
"""
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Slider Agent
"""
from __future__ import with_statement
from resource_management.core import shell
from resource_management.core.providers import Provider
from resource_management.core.logger import Logger
import os
import zipfile
class TarballProvider(Provider):
def action_install(self):
package_name = self.resource.package_name
location = self.resource.location
if package_name.lower().endswith("zip"):
if not self._check_existence(package_name, location):
zf = zipfile.ZipFile(package_name)
path = location
for member in zf.infolist():
zf.extract(member, path)
else:
Logger.info("Unsupported archive %s" % (package_name,))
def _check_existence(self, name, location):
return False