Sha256: 74de5ee447ab4e2740a4f18ec1b0589832f364551227993471d3cac279828079

Contents?: true

Size: 807 Bytes

Versions: 6

Compression:

Stored size: 807 Bytes

Contents

#!/bin/bash

searchstring='DEPRECATED'

function bundleexec {
  bundle exec "$@" 2> /dev/null
}

echo "Planned deprecations for Conjur CLI"
echo "-----"

echo "group"
bundleexec conjur group | grep "$searchstring"
echo "group members"
bundleexec conjur group members | grep "$searchstring"

echo "hostfactory"
bundleexec conjur hostfactory | grep "$searchstring"

echo "host"
bundleexec conjur host | grep "$searchstring"

echo "layer"
bundleexec conjur layer | grep "$searchstring"
echo "layer hosts"
bundleexec conjur layer hosts | grep "$searchstring"

echo "resource"
bundleexec conjur resource | grep "$searchstring"

echo "role"
bundleexec conjur role | grep "$searchstring"

echo "user"
bundleexec conjur user | grep "$searchstring"

echo "variable"
bundleexec conjur variable | grep "$searchstring"

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
conjur-cli-5.6.6 deprecations.sh
conjur-cli-5.6.5 deprecations.sh
conjur-cli-5.6.4 deprecations.sh
conjur-cli-5.6.3 deprecations.sh
conjur-cli-5.5.0 deprecations.sh
conjur-cli-5.4.0 deprecations.sh