Updated Galaxy meta info

This commit is contained in:
Larry Smith Jr
2020-04-19 11:59:44 -04:00
parent b7c3cf9f75
commit 643c7b6ee1
2 changed files with 7 additions and 25 deletions
+7 -8
View File
@@ -1,7 +1,7 @@
---
galaxy_info:
author: Larry Smith Jr.
description: Role to manage LVM Groups/Logical Volumes. Can be used to create, extend or resize LVM.
description: Ansible role to manage(create, extend, resize) LVM Groups/Logical Volumes.
license: MIT
min_ansible_version: 1.2
@@ -12,17 +12,16 @@ galaxy_info:
- name: EL
versions:
- 6
- 7
- all
- name: Fedora
versions:
- all
- name: Ubuntu
versions:
- precise
- trusty
- all
- name: Debian
versions:
- jessie
- wheezy
- all
galaxy_tags:
- system
- lvm
-17
View File
@@ -1,17 +0,0 @@
#!/usr/bin/env bash
TAR_FILE="v1.6.0.tar.gz"
# Prompt for Ansible role name
read -p "Enter the Ansible role name: " input
# Update .travis.yml with Ansible role name
sed -i '' "s/replace_role/${input}/g" ".travis.yml"
# Update tests/test.yml with Ansible role name
sed -i '' "s/replace_role/${input}/g" "tests/test.yml"
# Cleanup
if [ -f $TAR_FILE ]; then
rm $TAR_FILE
fi