https://github.com/tamerz/puppet-steamcmd
Puppet module to manage steamcmd
https://github.com/tamerz/puppet-steamcmd
puppet steamcmd
Last synced: 5 months ago
JSON representation
Puppet module to manage steamcmd
- Host: GitHub
- URL: https://github.com/tamerz/puppet-steamcmd
- Owner: Tamerz
- Created: 2017-09-19T11:51:43.000Z (almost 9 years ago)
- Default Branch: main
- Last Pushed: 2024-05-29T07:11:31.000Z (about 2 years ago)
- Last Synced: 2025-07-02T01:38:48.537Z (about 1 year ago)
- Topics: puppet, steamcmd
- Language: Ruby
- Homepage:
- Size: 74.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# steamcmd [](https://app.travis-ci.com/github/Tamerz/puppet-steamcmd)
#### Table of Contents
1. [Description](#description)
2. [Setup - The basics of getting started with steamcmd](#setup)
* [Beginning with steamcmd](#beginning-with-steamcmd)
3. [Usage - Configuration options and additional functionality](#usage)
## Description
The steamcmd module installs Valve Corporation's "Steam Console Client".
steamcmd is used to host many different game servers based on Steam's platform.
## Setup
### Beginning with steamcmd
`include steamcmd` will install steamcmd in `/opt/steamcmd` for Linux and `C:\Steamcmd` for Windows.
## Usage
To customize the installation, the following parameters are available:
`installdir`: The location to install steamcmd to. Default on Linux is `/opt/steamcmd` and Windows is `C:\Steamcmd`
`user`: This will create a user that owns the directory. Default is `steamcmd`
`group`: This will create a group that owns the directory. Default is `steamcmd`
For instance, to install to a different location with different users and groups:
```puppet
class { 'steamcmd':
installdir => '/home/steam',
user => 'steam',
group => 'steam',
}
```