mirror of
https://github.com/YunoHost/yunohost-admin.git
synced 2024-09-03 20:06:15 +02:00
update debian install config (NOT TESTED)
This commit is contained in:
parent
445f4c44a7
commit
ef54685e2f
3 changed files with 5 additions and 17 deletions
5
debian/install
vendored
5
debian/install
vendored
|
@ -1,4 +1 @@
|
|||
src/dist usr/share/yunohost/admin
|
||||
src/locales usr/share/yunohost/admin
|
||||
src/views usr/share/yunohost/admin
|
||||
src/index.html usr/share/yunohost/admin
|
||||
app/dist/* usr/share/yunohost/admin
|
||||
|
|
7
debian/postinst
vendored
7
debian/postinst
vendored
|
@ -10,13 +10,6 @@ do_configure() {
|
|||
|
||||
# Set document root permissions
|
||||
chown -R root:root /usr/share/yunohost/admin
|
||||
|
||||
# Replace RANDOMID with a random hash to invalidate
|
||||
# old cache ... we generate this locally on each machine
|
||||
# to avoid leaking stuff like the version
|
||||
# https://stackoverflow.com/questions/94445/using-openssl-what-does-unable-to-write-random-state-mean
|
||||
RANDOMID=$(RANDFILE=.rnd openssl rand -hex 4)
|
||||
sed -i "s/RANDOMID/$RANDOMID/g" /usr/share/yunohost/admin/index.html
|
||||
}
|
||||
|
||||
# summary of how this script can be called:
|
||||
|
|
10
debian/rules
vendored
10
debian/rules
vendored
|
@ -16,12 +16,10 @@ TMPDIR = $$(pwd)/debian/yunohost-admin
|
|||
|
||||
override_dh_auto_build:
|
||||
# Run npm/bower/gulp
|
||||
cd src ; npm --progress false --loglevel warn --color false install
|
||||
cd src ; node_modules/gulp/bin/gulp.js build
|
||||
cd app ; npm --progress false --loglevel warn --color false install
|
||||
cd app ; npm run build
|
||||
|
||||
override_dh_clean:
|
||||
dh_clean
|
||||
rm -rf src/node_modules
|
||||
rm -rf src/bower_components
|
||||
rm -rf src/dist
|
||||
|
||||
rm -rf app/node_modules
|
||||
rm -rf app/dist
|
||||
|
|
Loading…
Reference in a new issue