Initial support for australis as a debian package. Sample config file should be added. Using docker to build.
This commit is contained in:
parent
032ee08af1
commit
1a046b30af
6 changed files with 42 additions and 0 deletions
6
.gitignore
vendored
Normal file
6
.gitignore
vendored
Normal file
|
@ -0,0 +1,6 @@
|
|||
debian/australis
|
||||
debian/australis.debhelper.log
|
||||
debian/debhelper-build-stamp
|
||||
debian/files
|
||||
debian/australis.substvars
|
||||
build/
|
1
debian/australis.install
vendored
Normal file
1
debian/australis.install
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
build/australis usr/bin
|
10
debian/changelog
vendored
Normal file
10
debian/changelog
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
australis (0.0.5) unstable; urgency=medium
|
||||
|
||||
* Backup and snapshot commands have now been moved to under the force subcommand as these are expensive operations
|
||||
and the subcommand should reflect that.
|
||||
* Cobra library upgrade.
|
||||
* Added version command.
|
||||
* Added ability to use config config file. By default this file will be located in /etc/aurora/australis.yml
|
||||
* Changed insecureSkipVerify to skipCertVerification
|
||||
|
||||
-- Renan DelValle <renanidelvalle@gmail.com> Wed, 24 Oct 2018 18:27:19 -0700
|
1
debian/compat
vendored
Normal file
1
debian/compat
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
9
|
10
debian/control
vendored
Normal file
10
debian/control
vendored
Normal file
|
@ -0,0 +1,10 @@
|
|||
Source: australis
|
||||
Priority: optional
|
||||
Maintainer: Renan DelValle <renanidelvalle@gmail.com>
|
||||
Section: utils
|
||||
Standards-Version: 4.2.1.3
|
||||
Homepage: https://github.com/rdelval/australis
|
||||
|
||||
Package: australis
|
||||
Architecture: any
|
||||
Description: A gorealis based client for Apache Aurora
|
14
debian/rules
vendored
Executable file
14
debian/rules
vendored
Executable file
|
@ -0,0 +1,14 @@
|
|||
#!/usr/bin/make -f
|
||||
# See debhelper(7) (uncomment to enable)
|
||||
# output every command that modifies files on the build system.
|
||||
#DH_VERBOSE = 1
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
clean:
|
||||
rm -rf $(CURDIR)/build
|
||||
|
||||
override_dh_auto_build:
|
||||
mkdir $(CURDIR)/build
|
||||
docker run --rm -v "$(CURDIR)":/go/src/github.com/rdelval/australis -w /go/src/github.com/rdelval/australis golang:1.11 go build -o build/australis
|
Loading…
Add table
Add a link
Reference in a new issue