jetty6.postinst
来自「jetty SERVER連接資料庫用的軟體」· POSTINST 代码 · 共 24 行
POSTINST
24 行
#!/bin/sh -ecase "$1" in configure) if ! id jetty > /dev/null 2>&1 ; then adduser --system --home /usr/share/jetty6 --no-create-home \ --ingroup nogroup --disabled-password --shell /bin/false \ jetty fi chown -R jetty:adm /var/cache/jetty6 /var/log/jetty6 /var/lib/jetty6 chmod 750 /var/log/jetty6 ;; abort-upgrade|abort-remove|abort-deconfigure) ;; *) echo "$0 called with unknown argument \`$1'" >&2 exit 1 ;;esac#DEBHELPER#
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?