⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 postinst

📁 udf文件系统工具软件
💻
字号:
#!/bin/sh -e# postinst script for udftools. /usr/share/debconf/confmoduledb_version 2.0case "$1" in    configure)        db_get udftools/makedev-ask        # The reason why this checks for pktcdvd3 and not pktcdvd0 is        # that older versions of udftools only created pktcdvd0 and        # pktcdvd1 - we want pktcdvd2 and pktcdvd3 created on upgrade.         # Additionally, older versions of udftools did not use group        # cdrom for the device files.        if test ! -e /dev/.devfsd \             -a "$RET" = "Create device files" \             -a ! -b /dev/pktcdvd3; then            cd /dev; ./MAKEDEV pktcdvd        fi    ;;    abort-upgrade|abort-remove|abort-deconfigure)    ;;    *)        echo "postinst called with unknown argument \`$1'" >&2        exit 0    ;;esac#DEBHELPER#exit 0

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -