Skip to content

Commit e44032e

Browse files
authored
Snap for SLCLI
I've created a "snap" package for `slcli`; testing and is working quite well. Snaps are universal packages for Linux distros and libs and software within a snap will not affect those on your system. This snap is already up and running and can be installed by running this command from your terminal: `sudo snap install slcli`
1 parent 0bef6fc commit e44032e

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

snap/snapcraft.yaml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: slcli # check to see if it's available
2+
version: '5.4.1.3+git' # check versioning
3+
summary: Python based SoftLayer API Tool. # 79 char long summary
4+
description: |
5+
A command-line interface is also included and can be used to manage various SoftLayer products and services.
6+
grade: stable # must be 'stable' to release into candidate/stable channels
7+
confinement: strict # use 'strict' once you have the right plugs
8+
9+
apps:
10+
slcli:
11+
command: slcli
12+
environment:
13+
LC_ALL: C.UTF-8
14+
plugs:
15+
- home
16+
- network
17+
- network-bind
18+
19+
parts:
20+
my-part:
21+
source: https://github.com/softlayer/softlayer-python
22+
source-type: git
23+
plugin: python3
24+
25+
build-packages:
26+
- python3
27+
28+
stage-packages:
29+
- python3

0 commit comments

Comments
 (0)