Metadata-Version: 2.1
Name: saltext.sap-car
Version: 1.0.0
Summary: SaltStack extension to handle SAPCAR archives
Home-page: https://github.com/SAPUCC/saltext-sap_car
Author: Benjamin Wegener
Author-email: wegener.benjamin@googlemail.com
License: UNKNOWN
Project-URL: Source, https://github.com/SAPUCC/saltext-sap_car
Project-URL: Tracker, https://github.com/SAPUCC/saltext-sap_car/issues
Keywords: salt-extension
Platform: any
Classifier: Programming Language :: Python
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Provides-Extra: tests
Provides-Extra: dev
Provides-Extra: docs
Provides-Extra: docsauto
License-File: LICENSE

# SaltStack SAPCAR extension
This SaltStack extention allows the handling of SAPCAR archives over states. Right now,
only extraction is supported as it is the biggest use case.

**THIS PROJECT IS NOT ASSOCIATED WITH SAP IN ANY WAY**

## Installation
Run the following to install the SaltStack SAPCAR extension:
```bash
salt-call pip.install saltext-sap_car
```
Keep in mind that this package must be installed on every minion that should utilize the states and
execution modules.

## Usage
A state using the SAPCAR extension looks like this:
```jinja
SAProuter is extracted:
  sap_car.extracted:
    - name: /mnt/nfs/saprouter.sar
    - output_dir: /usr/sap/saprouter/
    - user: root
    - group: root
    - require:
      - pkg: SAPCAR is installed
```

## Docs
See https://saltext-sap-car.readthedocs.io/ for the documentation.

## Contributing
We would love to see your contribution to this project. Please refer to `CONTRIBUTING.md` for further details.

## License
This project is licensed under GPLv3. See `LICENSE.md` for the license text and `COPYRIGHT.md` for the general copyright notice.


