Adoptable Cookbooks List

Looking for a cookbook to adopt? You can now see a list of cookbooks available for adoption!
List of Adoptable Cookbooks

Supermarket Belongs to the Community

Supermarket belongs to the community. While Chef has the responsibility to keep it running and be stewards of its functionality, what it does and how it works is driven by the community. The chef/supermarket repository will continue to be where development of the Supermarket application takes place. Come be part of shaping the direction of Supermarket by opening issues and pull requests or by joining us on the Chef Mailing List.

Select Badges

Select Supported Platforms

Select Status

RSS

arcgis-license-manager (1) Versions 5.0.0

Installs and configures ArcGIS License Manager

Policyfile
Berkshelf
Knife
cookbook 'arcgis-license-manager', '~> 5.0.0', :supermarket
cookbook 'arcgis-license-manager', '~> 5.0.0'
knife supermarket install arcgis-license-manager
knife supermarket download arcgis-license-manager
README
Dependencies
Changelog
Quality 17%

layout: default
title: "arcgis-license-manager cookbook"
category: cookbooks
item: arcgis-license-manager
version: 5.0.0

latest: true

arcgis-license-manager cookbook

This cookbook installs and configures ArcGIS License Manager.

Supported Versions

  • 2021.1
  • 2022.0
  • 2022.1
  • 2023.0
  • 2024.0

Supported Platforms

  • Windows Server 2022 Standard and Datacenter
  • Windows Server 2019 Standard and Datacenter
  • Windows Server 2016 Standard and Datacenter
  • Windows 11 Pro and Enterprise (64 bit)
  • Windows 10 Pro and Enterprise (64 bit)
  • Red Hat Enterprise Linux (RHEL) Server 9
  • Red Hat Enterprise Linux (RHEL) Server 8
  • SUSE Linux Enterprise Server (SLES) 15

Dependencies

The following cookbooks are required:

  • arcgis-repository

Attributes

  • node['arcgis']['run_as_user'] = User account used to run ArcGIS License Manager on Linux. Default account name is arcgis.
  • node['arcgis']['licensemanager']['version'] = ArcGIS License Manager version. Default value is 2024.0.
  • node['arcgis']['licensemanager']['setup_archive'] = The location of ArcGIS License Manager setup archive. Default value depends on node['arcgis']['version'] attribute value.
  • node['arcgis']['licensemanager']['setup'] = The location of ArcGIS License Manager setup executable. Default location is %USERPROFILE%\Documents\ArcGIS License Manager 2024.0\LicenseManager\Setup.exe on Windows, and /opt/arcgis/2020.0/LicenseManager_Linux/Setup on Linux.
  • node['arcgis']['licensemanager']['install_dir'] = ArcGIS License Manager installation directory. By default, the license manager is installed to %ProgramFiles(x86)%\ArcGIS on Windows and / on Linux.
  • node['arcgis']['licensemanager']['packages'] = Linux system packages to install before installing ArcGIS License Manager. Default value is [].

Recipes

default

Calls arcgis-license-manager::licensemanager recipe.

licensemanager

Installs and configures ArcGIS License Manager.

Attributes used by the recipe:

{
  "arcgis": {
    "repository": {
       "archives": "C:\\Software\\Esri",
       "setups": "C:\\Software\\Setups" 
    },
    "licensemanager": {
      "version": "2024.0",
      "setup": "C:\\Software\\Setups\\License Manager 2024.0\\LicenseManager\\Setup.exe",
      "install_dir": "C:\\Program Files (x86)\\ArcGIS"
    }
  },
  "run_list":[
    "recipe[arcgis-license-manager::licensemanager]"
  ]
}

uninstall

Uninstalls ArcGIS License Manager.

Attributes used by the recipe:

{
  "arcgis": {
    "licensemanager": {
      "install_dir": "C:\\Program Files (x86)\\ArcGIS"
    }
  },
  "run_list":[
    "recipe[arcgis-license-manager::uninstall]"
  ]
}

Dependent cookbooks

arcgis-repository ~> 5.0
limits ~> 2.3
java_properties ~> 0.1

Contingent cookbooks

There are no cookbooks that are contingent upon this one.

arcgis-license-manager cookbook CHANGELOG

This file is used to list changes made in each version of the arcgis-license-manager cookbook.

5.0.0

  • Initial release of arcgis-license-manager cookbook

Collaborator Number Metric
            

5.0.0 failed this metric

Failure: Cookbook has 0 collaborators. A cookbook must have at least 2 collaborators to pass this metric.

Contributing File Metric
            

5.0.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a CONTRIBUTING.md file

Cookstyle Metric
            

5.0.0 failed this metric

Chef/Deprecations/UseInlineResourcesDefined: use_inline_resources is now the default for resources in Chef Infra Client 13+ and does not need to be specified. (https://docs.chef.io/workstation/cookstyle/chef_deprecations_useinlineresourcesdefined): arcgis-license-manager/providers/licensemanager.rb: 19
Chef/Deprecations/UseInlineResourcesDefined: use_inline_resources is now the default for resources in Chef Infra Client 13+ and does not need to be specified. (https://docs.chef.io/workstation/cookstyle/chef_deprecations_useinlineresourcesdefined): arcgis-license-manager/providers/user.rb: 20
Chef/Modernize/DefaultActionFromInitialize: The default action of a resource can be set with the "default_action" helper instead of using the initialize method. (https://docs.chef.io/workstation/cookstyle/chef_modernize_defaultactionfrominitialize): arcgis-license-manager/resources/licensemanager.rb: 33
Chef/Modernize/DefaultActionFromInitialize: The default action of a resource can be set with the "default_action" helper instead of using the initialize method. (https://docs.chef.io/workstation/cookstyle/chef_modernize_defaultactionfrominitialize): arcgis-license-manager/resources/user.rb: 26
Chef/Modernize/RespondToInMetadata: It is no longer necessary to use respond_to? or defined? in metadata.rb in Chef Infra Client 12.15 and later (https://docs.chef.io/workstation/cookstyle/chef_modernize_respondtoinmetadata): arcgis-license-manager/metadata.rb: 8
Chef/Modernize/RespondToInMetadata: It is no longer necessary to use respond_to? or defined? in metadata.rb in Chef Infra Client 12.15 and later (https://docs.chef.io/workstation/cookstyle/chef_modernize_respondtoinmetadata): arcgis-license-manager/metadata.rb: 22
Chef/Modernize/RespondToInMetadata: It is no longer necessary to use respond_to? or defined? in metadata.rb in Chef Infra Client 12.15 and later (https://docs.chef.io/workstation/cookstyle/chef_modernize_respondtoinmetadata): arcgis-license-manager/metadata.rb: 23
Chef/RedundantCode/LongDescriptionMetadata: The long_description metadata.rb method is not used and is unnecessary in cookbooks. (https://docs.chef.io/workstation/cookstyle/chef_redundantcode_longdescriptionmetadata): arcgis-license-manager/metadata.rb: 6
Chef/RedundantCode/RecipeMetadata: The recipe metadata.rb method is not used and is unnecessary in cookbooks. Recipes should be documented in the cookbook's README.md file instead. (https://docs.chef.io/workstation/cookstyle/chef_redundantcode_recipemetadata): arcgis-license-manager/metadata.rb: 18
Chef/RedundantCode/RecipeMetadata: The recipe metadata.rb method is not used and is unnecessary in cookbooks. Recipes should be documented in the cookbook's README.md file instead. (https://docs.chef.io/workstation/cookstyle/chef_redundantcode_recipemetadata): arcgis-license-manager/metadata.rb: 19
Chef/RedundantCode/RecipeMetadata: The recipe metadata.rb method is not used and is unnecessary in cookbooks. Recipes should be documented in the cookbook's README.md file instead. (https://docs.chef.io/workstation/cookstyle/chef_redundantcode_recipemetadata): arcgis-license-manager/metadata.rb: 20
Chef/Sharing/InvalidLicenseString: Cookbook metadata.rb does not use a SPDX compliant license string or "all rights reserved". See https://spdx.org/licenses/ for a complete list of license identifiers. (https://docs.chef.io/workstation/cookstyle/chef_sharing_invalidlicensestring): arcgis-license-manager/metadata.rb: 4

Run with Cookstyle Version 7.32.1 with cops Chef/Deprecations,Chef/Correctness,Chef/Sharing,Chef/RedundantCode,Chef/Modernize,Chef/Security,InSpec/Deprecations

No Binaries Metric
            

5.0.0 passed this metric

Testing File Metric
            

5.0.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must contain a TESTING.md file

Version Tag Metric
            

5.0.0 failed this metric

Failure: To pass this metric, your cookbook metadata must include a source url, the source url must be in the form of https://github.com/user/repo, and your repo must include a tag that matches this cookbook version number