-
Notifications
You must be signed in to change notification settings - Fork 5.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make deb scripts more compliant with Debian policy
- Loading branch information
Showing
7 changed files
with
237 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,43 @@ | ||
#!/bin/sh | ||
# postinst script for salt-api | ||
# | ||
# See: dh_installdeb(1). | ||
|
||
set -e | ||
|
||
# Summary of how this script can be called: | ||
# * <postinst> 'configure' <most-recently-configured-version> | ||
# * <old-postinst> 'abort-upgrade' <new version> | ||
# * <conflictor's-postinst> 'abort-remove' 'in-favour' <package> | ||
# <new-version> | ||
# * <postinst> 'abort-remove' | ||
# * <deconfigured's-postinst> 'abort-deconfigure' 'in-favour' | ||
# <failed-install-package> <version> 'removing' | ||
# <conflicting-package> <version> | ||
# for details, see https://www.debian.org/doc/debian-policy/ or | ||
# the debian-policy package. | ||
|
||
|
||
case "$1" in | ||
configure) | ||
if [ ! -e "/var/log/salt/api" ]; then | ||
touch /var/log/salt/api | ||
chmod 640 /var/log/salt/api | ||
fi | ||
chown salt:salt /var/log/salt/api | ||
if command -v systemctl; then systemctl enable salt-api; fi | ||
;; | ||
abort-upgrade|abort-remove|abort-deconfigure) | ||
;; | ||
|
||
*) | ||
echo "postinst called with unknown argument '$1'" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
|
||
# dh_installdeb will replace this with shell code automatically | ||
# generated by other debhelper scripts. | ||
|
||
#DEBHELPER# | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,40 @@ | ||
#!/bin/sh | ||
# postinst script for salt-cloud. | ||
# | ||
# See: dh_installdeb(1). | ||
|
||
set -e | ||
|
||
# Summary of how this script can be called: | ||
# * <postinst> 'configure' <most-recently-configured-version> | ||
# * <old-postinst> 'abort-upgrade' <new version> | ||
# * <conflictor's-postinst> 'abort-remove' 'in-favour' <package> | ||
# <new-version> | ||
# * <postinst> 'abort-remove' | ||
# * <deconfigured's-postinst> 'abort-deconfigure' 'in-favour' | ||
# <failed-install-package> <version> 'removing' | ||
# <conflicting-package> <version> | ||
# for details, see https://www.debian.org/doc/debian-policy/ or | ||
# the debian-policy package. | ||
|
||
|
||
case "$1" in | ||
configure) | ||
PY_VER=$(/opt/saltstack/salt/bin/python3 -c "import sys; sys.stdout.write('{}.{}'.format(*sys.version_info)); sys.stdout.flush;") | ||
chown -R salt:salt /etc/salt/cloud.deploy.d /opt/saltstack/salt/lib/python${PY_VER}/site-packages/salt/cloud/deploy | ||
;; | ||
abort-upgrade|abort-remove|abort-deconfigure) | ||
;; | ||
|
||
*) | ||
echo "postinst called with unknown argument '$1'" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
|
||
# dh_installdeb will replace this with shell code automatically | ||
# generated by other debhelper scripts. | ||
|
||
#DEBHELPER# | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,40 @@ | ||
#!/bin/sh | ||
# postinst script for salt-common. | ||
# | ||
# See: dh_installdeb(1). | ||
|
||
set -e | ||
|
||
/opt/saltstack/salt/bin/python3 -m compileall -qq /opt/saltstack/salt/lib | ||
# Summary of how this script can be called: | ||
# * <postinst> 'configure' <most-recently-configured-version> | ||
# * <old-postinst> 'abort-upgrade' <new version> | ||
# * <conflictor's-postinst> 'abort-remove' 'in-favour' <package> | ||
# <new-version> | ||
# * <postinst> 'abort-remove' | ||
# * <deconfigured's-postinst> 'abort-deconfigure' 'in-favour' | ||
# <failed-install-package> <version> 'removing' | ||
# <conflicting-package> <version> | ||
# for details, see https://www.debian.org/doc/debian-policy/ or | ||
# the debian-policy package. | ||
|
||
|
||
case "$1" in | ||
configure) | ||
/opt/saltstack/salt/bin/python3 -m compileall -qq /opt/saltstack/salt/lib | ||
;; | ||
|
||
abort-upgrade|abort-remove|abort-deconfigure) | ||
;; | ||
|
||
*) | ||
echo "postinst called with unknown argument '$1'" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
|
||
# dh_installdeb will replace this with shell code automatically | ||
# generated by other debhelper scripts. | ||
|
||
#DEBHELPER# | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,40 @@ | ||
#!/bin/sh | ||
# prerm script for salt-common. | ||
# | ||
# See: dh_installdeb(1). | ||
|
||
set -e | ||
|
||
dpkg -L salt-common | perl -ne 's,/([^/]*)\.py$,/__pycache__/\1.*, or next; unlink $_ or die $! foreach glob($_)' | ||
find /opt/saltstack/salt -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir | ||
# Summary of how this script can be called: | ||
# * <prerm> 'remove' | ||
# * <old-prerm> 'upgrade' <new-version> | ||
# * <new-prerm> 'failed-upgrade' <old-version> | ||
# * <conflictor's-prerm> 'remove' 'in-favour' <package> <new-version> | ||
# * <deconfigured's-prerm> 'deconfigure' 'in-favour' | ||
# <package-being-installed> <version> 'removing' | ||
# <conflicting-package> <version> | ||
# for details, see https://www.debian.org/doc/debian-policy/ or | ||
# the debian-policy package. | ||
|
||
|
||
case "$1" in | ||
remove|upgrade|deconfigure) | ||
dpkg -L salt-common | perl -ne 's,/([^/]*)\.py$,/__pycache__/\1.*, or next; unlink $_ or die $! foreach glob($_)' | ||
find /opt/saltstack/salt -type d -name __pycache__ -empty -print0 | xargs --null --no-run-if-empty rmdir | ||
;; | ||
|
||
failed-upgrade) | ||
;; | ||
|
||
*) | ||
echo "prerm called with unknown argument '$1'" >&2 | ||
exit 1 | ||
;; | ||
esac | ||
|
||
# dh_installdeb will replace this with shell code automatically | ||
# generated by other debhelper scripts. | ||
|
||
#DEBHELPER# | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters