mirror of
https://github.com/SCST-project/scst.git
synced 2026-05-19 03:31:26 +00:00
Debian packages can be generated by running "make dpkg". Running that command will produce e.g. the following output: [ ... ] Output files: total 8444 -rw-r--r-- 1 bart bart 185150 Jan 31 20:11 iscsi-scst_3.4.0.6003-1_amd64.deb -rw-r--r-- 1 bart bart 53174 Jan 31 20:11 scst-dev_3.4.0.6003-1_all.deb -rw-r--r-- 1 bart bart 878030 Jan 31 20:11 scst-dkms_3.4.0.6003-1_all.deb -rw-r--r-- 1 bart bart 7388 Jan 31 20:09 scst_3.4.0.6003-1.debian.tar.xz -rw-r--r-- 1 bart bart 1046 Jan 31 20:09 scst_3.4.0.6003-1.dsc -rw-r--r-- 1 bart bart 95348 Jan 31 20:11 scst_3.4.0.6003-1_amd64.build -rw-r--r-- 1 bart bart 6526 Jan 31 20:11 scst_3.4.0.6003-1_amd64.buildinfo -rw-r--r-- 1 bart bart 3054 Jan 31 20:11 scst_3.4.0.6003-1_amd64.changes -rw-r--r-- 1 bart bart 4892014 Jan 31 20:11 scst_3.4.0.6003-1_amd64.deb -rw-rw-r-- 1 bart bart 2458224 Jan 31 20:09 scst_3.4.0.6003.orig.tar.xz -rw-r--r-- 1 bart bart 43616 Jan 31 20:11 scstadmin_3.4.0.6003-1_amd64.deb These packages can be installed with the dpkg command. An example: cd dpkg && sudo dpkg -i scst_*.deb iscsi-scst_*.deb scstadmin_*.deb git-svn-id: http://svn.code.sf.net/p/scst/svn/trunk@7350 d57e44dd-8a1f-0410-8b47-8ef2f437770f
33 lines
862 B
Bash
33 lines
862 B
Bash
#!/bin/sh
|
|
# prerm script for scst
|
|
#
|
|
# see: dh_installdeb(1)
|
|
|
|
# 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)
|
|
update-rc.d scst remove;;
|
|
|
|
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#
|