1e0a27c6cd
-----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEsclPZxif+sAmSPvz1N6yL8C5bhUFAl4VtNwACgkQ1N6yL8C5 bhWAZQ//fnm5InpjIq8ujEuKOJ+PhhOn1mh38eeADK6kC4Pcw7yjQIrCJU3R0bdZ 7+pSjdRQ8Qy+cuCKFGjCoESai2xsHnJvo18GWRmfa1JrNEjpulCCFU6GbIOQtwcs O+dhCwbbKPNEpPjLX9nMZbDi2TQONP4msjluYFRn/kceN8io0BOAgkzhxzlKX2o6 10hQLPXhIaWaM7ePIupgIshHURIcno7wRV/JdK4ZIp8/aS1OcJpASzpnqJqwAQ5I J4XgPdGVtwFX1kE9GV2DD5v9iBQJ2T42lIVEIhQuAqYrZsrP+Ln7O12CInWYnvEV 4leWSHbRS0PzRJF+iC5HhY0pr92LDrko1uiRC6o5VGzzGdpTfHD19hVHZQp6lkAL WDE4qzDUt9VcEscbHR54s0gd1NEHLbrDiqkoXCu3dkAFAz5zos8CzA0g2vsrkfK1 1wZbGyim7yjZoHbQZcYY4LWPms9t2gfIaFVEo12AIQXcZJLsBtNzBcLvaIGTRTyM 96jkDzrr0+BKjfRBCddH+OgfXi5HxW1sv5EPjjuf5yzu9GuJ7oliaFpqVoUtScpn Rh8cgunzpTEBZs/hPoVmDlCvsANMZwGJQthGcSaCd4KuIahnfg+Xu+TMEOsBTGJr Rm3l11sAUBj8vBO8M6exGaKMV4bB226QCjNA92TUTiGQHDg26WU= =KxY2 -----END PGP SIGNATURE----- Merge tag 'debian/12.6.2-2' into buster-fasttrack gitlab Debian release 12.6.2-2
28 lines
1 KiB
Makefile
Executable file
28 lines
1 KiB
Makefile
Executable file
#!/usr/bin/make -f
|
|
|
|
include /usr/share/dpkg/pkg-info.mk
|
|
|
|
%:
|
|
dh $@ --with=systemd
|
|
|
|
override_dh_install:
|
|
dh_install -XLICENSE
|
|
dh_installexamples
|
|
# Make sure we are installing all required files in debian/install
|
|
sh debian/upstream-file-count-check.sh
|
|
rm -rf debian/gitlab/usr/share/gitlab/tmp/*
|
|
find debian/gitlab/usr/share/gitlab/ -name .eslintrc.yml -delete
|
|
mv debian/gitlab/usr/share/gitlab/app/assets/javascripts/locale \
|
|
debian/gitlab/usr/share/gitlab/app/assets/javascripts/locale.static
|
|
mv debian/gitlab/var/lib/gitlab/db/schema.rb debian/gitlab/var/lib/gitlab/db/schema.rb.template
|
|
sed -i 's/__NEW_VERSION__/${DEB_VERSION}/g' debian/gitlab/usr/lib/gitlab/templates/gitlab-debian.conf.example
|
|
|
|
override_dh_installinit:
|
|
dh_installinit --no-start -p gitlab --name=gitlab-sidekiq
|
|
dh_installinit --no-start -p gitlab --name=gitlab-unicorn
|
|
dh_installinit --no-start -p gitlab --name=gitlab-mailroom
|
|
dh_installinit --no-start -p gitlab --name=gitlab-workhorse
|
|
dh_installinit
|
|
|
|
override_dh_systemd_start:
|
|
dh_systemd_start --no-start
|