| #!/bin/sh |
| ################################################################################ |
| # Licensed to the Apache Software Foundation (ASF) under one |
| # or more contributor license agreements. See the NOTICE file |
| # distributed with this work for additional information |
| # regarding copyright ownership. The ASF licenses this file |
| # to you under the Apache License, Version 2.0 (the |
| # "License"); you may not use this file except in compliance |
| # with the License. You may obtain a copy of the License at |
| # |
| # http://www.apache.org/licenses/LICENSE-2.0 |
| # |
| # Unless required by applicable law or agreed to in writing, software |
| # distributed under the License is distributed on an "AS IS" BASIS, |
| # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| # See the License for the specific language governing permissions and |
| # limitations under the License. |
| ################################################################################ |
| |
| # postinst script for importer |
| |
| 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 http://www.debian.org/doc/debian-policy/ or |
| # the debian-policy package |
| |
| case "$1" in |
| configure) |
| if ! getent group flink >/dev/null; then |
| addgroup --system flink |
| fi |
| |
| if ! getent passwd flink >/dev/null; then |
| adduser --quiet \ |
| --system \ |
| --ingroup flink \ |
| --quiet \ |
| --disabled-login \ |
| --disabled-password \ |
| --home /usr/share/flink-dist \ |
| --no-create-home \ |
| -gecos "Flink User" \ |
| flink |
| fi |
| |
| if [ -z "$2" ]; then |
| chown -R flink:flink /var/log/flink-dist |
| fi |
| sed -i s'#./resources/web-docs#/usr/share/flink-dist/resources/web-docs#' /usr/share/flink-dist/conf/flink-conf.yaml |
| # append infoserver configuration |
| echo "jobmanager.web.rootpath: /usr/share/flink-dist/resources/web-docs-infoserver" >> /usr/share/flink-dist/conf/flink-conf.yaml |
| ;; |
| |
| 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# |