Bash script to clean environments.
Full documentation on Readthedocs.
Source code on:
Ingredients
Bash script to clean environments.
When executed this script performs the following actions:
- Ansible cleanup:
- Remove installed ansible roles from current user home directory.
- If the -u parameter is present, uninstall Ansible.
- General cleanup:
- Remove all soft links found on tests folder.
- Remove the folders docs/build or doc/build if exists.
- Remove all files under /tmp folder.
- Python cleanup:
- Remove python compilated and cache files.
Using the -t parameter is possible to select to cleanup only Ansible or Python resources.
Download the script, give it execution permissions and execute it:
wget https://gitlab.com/constrict0r/cleanme/raw/master/cleanme.sh chmod +x cleanme.sh ./cleanme.sh
To run tests:
cd cleanme chmod +x testme.sh ./testme.sh
On some tests you may need to use sudo to succeed.
The following parameters are supported:
- -h (help): Show help message and exit.
./cleanme.sh -h
- -p (path): Optional path to project root folder.
./cleanme.sh -p /home/username/my-project
- -t (type): This parameter indicates which types of resources to
- process.
The allowed values are:
- a : ansible.
- p : python.
This parameter is empty by default.
./cleanme.sh -t ap
- -u (uninstall): This parameter uninstalls sotfware.
The uninstalled software is:
- Ansible
./cleanme.sh -u
- Bash.
MIT. See the LICENSE file for more details.
The project data flow is shown below:
The Travelling Vaudeville Villain.
Enjoy!!!
Bash script to clean enviroments.
ONLY_TYPE
String indicating to clean only resources of specific types. The allowed values are: ap, being a = ansible, p = python.PROJECT_PATH
Path to the project to cleanup, if not specified the current path will be used.UNINSTALL
Wheter to uninstall or not the following software: ansible, python3. Default to false.
cleanup_ansible()
Delete ansible auto-created files.
Returns: 0 if successful, 1 on failure. Return type: int cleanup_general()
Delete general auto-created files.
Parameters: $1 (str) – Optional path to project. Default to current path. Returns: 0 if successful, 1 on failure. Return type: int cleanup_python()
Delete python auto-created files.
Parameters: $1 (str) – Optional path to project. Default to current path. Returns: 0 if successful, 1 on failure. Return type: int error_message()
Shows an error message.
Parameters: $1 (str) – Message to show. Returns: 0 if successful, 1 on failure. Return type: int get_parameters()
Get bash parameters.
Accepts:
- h (help).
- o <types> (only clean type).
- p <path> (project_path).
- u (uninstall).
Parameters: $@ (str) – Bash arguments. Returns: 0 if successful, 1 on failure. Set globals. Return type: int help()
Shows help message.
Parameters: Function has no arguments. Returns: 0 if successful, 1 on failure. Return type: int main()
Setup requirements and run tests.
Parameters: $@ (str) – Bash arguments. Returns: 0 if successful, 1 on failure. Return type: int sanitize()
Sanitize input.
The applied operations are:
- Trim.
Parameters: $1 (str) – Text to sanitize. Returns: The sanitized input. Return type: str trim()
Trim whitespace at the beggining and end of a string.
Parameters: $1 (str) – Text where to apply trim. Returns: The trimmed input. Return type: str uninstall_ansible()
Uninstall Ansible.
Returns: 0 if successful, 1 on failure. Return type: int