KO
|
EN
gitlite — search
Search
#php
#javascript
#java
#shell
#python
#game
#linux
#go
#c-plus-plus
#dotfiles
#macos
#mysql
gosal
★ 35
Open GitHub ↗
A Sal client written in Go
Download README (.md)
Explore Similar Repositories
ng2-gRPC
:
A starter kit for Angular 2 projects using gRPC-web
hyper-cat-cursor
:
An extension for Hyper to replace the cursor with a cat emoji sequence. Why? Because I was bored.
strong-normalization
:
Formalizations of strong normalization proofs
Metro-Lights
:
A dark Xcode theme inspired by City Lights for Atom.
javassembly
:
:floppy_disk: Calling Assembly from Java: simple example using the JNI and NASM.
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
gosal
?
Download (.md)
# Gosal (sal-client) _Due to major changes in Sal4's checkin method, people who run Sal3 should checkout the Sal3 branch and build from there._ ## Overview Gosal is intended to be a multi platform client for sal, Gosal does not provide a complete 1-2-1 mapping of reporting info compared to Sal for macOS PRs are welcome. ## Getting Started Your configuration file should be `json` formatted as follows: ```json { "key": "your gigantic machine group key", "url": "https://urltoyourserver.com", "management": { "tool": "puppet", "path": "C:\\Program Files\\Puppet Labs\\Puppet\\bin\\puppet.bat", "command": "facts" } } ``` # Running gosal Gosal requires the configuration file to be passed in as an argument like so... #### Windows Example `gosal.exe --config "C:\path\to\config.json"` # Building Sal3 To build the project after cloning: ``` make deps make build ``` Gosal OS specific binaries will be added to the `build/` directory. # Building Sal4 Sal4 (master) is switching to go.mod! ## Dependencies Gosal uses [go-modules](https://blog.golang.org/using-go-modules) to manage external dependencies. Run `make deps` to install/update the required dependencies. After adding a new dependency, run `mod verify` & `go mod tidy`, which will update the mod.go & mod.sum file. ## Formatting your code Go has an exceptional formatter - please use it! ``` gofmt -s -w *.go gofmt -s -w ./*/*.go ```