summaryrefslogtreecommitdiffstats
path: root/proteanos-branding.pkg/postinst
diff options
context:
space:
mode:
Diffstat (limited to 'proteanos-branding.pkg/postinst')
-rw-r--r--proteanos-branding.pkg/postinst20
1 files changed, 20 insertions, 0 deletions
diff --git a/proteanos-branding.pkg/postinst b/proteanos-branding.pkg/postinst
new file mode 100644
index 0000000..ea2ecad
--- /dev/null
+++ b/proteanos-branding.pkg/postinst
@@ -0,0 +1,20 @@
+#!/bin/sh
+
+if [ "x${1}" = 'xconfigure' ]; then
+ if [ "x$(ls -A /var/www/ | head -n 1)" = 'x' ]; then
+ # There are no files in /var/www/.
+ cp /usr/share/branding/www/index.html /var/www/index.html
+ sha256sum /var/www/index.html \
+ >/usr/share/branding/www/SHA256SUMS
+ elif [ -f /var/www/index.html ] && \
+ [ -f /usr/share/branding/www/SHA256SUMS ]; then
+ if sha256sum -cs /usr/share/branding/www/SHA256SUMS; then
+ # /var/www/index.html exists and hasn't been modified by
+ # the user.
+ cp /usr/share/branding/www/index.html \
+ /var/www/index.html
+ sha256sum /var/www/index.html \
+ >/usr/share/branding/www/SHA256SUMS
+ fi
+ fi
+fi