mirror of
https://github.com/saltstack/salt.git
synced 2025-04-16 09:40:20 +00:00
Add debug debian package
This commit is contained in:
parent
a189dab40d
commit
d8721e5cd5
3 changed files with 14 additions and 0 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -139,6 +139,7 @@ nox.*.tar.xz
|
|||
/pkg/debian/salt-api
|
||||
/pkg/debian/salt-common
|
||||
/pkg/debian/salt-cloud
|
||||
/pkg/debian/salt-dbg
|
||||
/pkg/debian/salt-master
|
||||
/pkg/debian/salt-minion
|
||||
/pkg/debian/salt-ssh
|
||||
|
|
|
@ -14,6 +14,14 @@ Vcs-Browser: https://github.com/saltstack/salt.git
|
|||
Vcs-Git: git://github.com/saltstack/salt.git
|
||||
|
||||
|
||||
Package: salt-dbg
|
||||
Architecture: amd64 arm64
|
||||
Section: debug
|
||||
Priority: extra
|
||||
Homepage: http://saltproject.io/
|
||||
Description: Salt debug symbols
|
||||
|
||||
|
||||
Package: salt-common
|
||||
Architecture: amd64 arm64
|
||||
Depends: ${misc:Depends}
|
||||
|
|
|
@ -1,6 +1,8 @@
|
|||
#!/usr/bin/make -f
|
||||
DH_VERBOSE = 1
|
||||
|
||||
.PHONY: override_dh_strip
|
||||
|
||||
%:
|
||||
dh $@
|
||||
|
||||
|
@ -57,3 +59,6 @@ override_dh_install:
|
|||
sed 's/#user: root/user: salt/g' conf/master > debian/salt-master/etc/salt/master
|
||||
|
||||
dh_install
|
||||
|
||||
override_dh_strip:
|
||||
dh_strip --dbg-package=salt-dbg
|
||||
|
|
Loading…
Add table
Reference in a new issue