From 1884a0ef4e084c07974cbd3cc0da184aaf582d12 Mon Sep 17 00:00:00 2001 From: Anthony Perkins Date: Sun, 14 Nov 2021 13:18:31 +0000 Subject: [PATCH] Add script to install ansible.posix collection --- posix.sh | 2 ++ requirements.yml | 20 -------------------- 2 files changed, 2 insertions(+), 20 deletions(-) create mode 100755 posix.sh delete mode 100644 requirements.yml diff --git a/posix.sh b/posix.sh new file mode 100755 index 0000000..a242aaa --- /dev/null +++ b/posix.sh @@ -0,0 +1,2 @@ +#!/bin/sh +ansible-galaxy collection install ansible.posix diff --git a/requirements.yml b/requirements.yml deleted file mode 100644 index b3a3c3e..0000000 --- a/requirements.yml +++ /dev/null @@ -1,20 +0,0 @@ ---- -# Copyright 2021 Anthony Perkins -# -# Licensed 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. - -# Install with `ansible-galaxy install -r requirements.yml`. - -collections: - - ansible.posix - - community.general