Mini Shell Moded By TiGER HeX
Home
||
Turbo Force
||
B-F Config_Cpanel
Current Path :
/
lib
/
tasksel
/
tests
/
Linux midnightridazz 4.19.0-11-cloud-amd64 #1 SMP Debian 4.19.146-1 (2020-09-17) x86_64
Upload File :
New :
File
Dir
//lib/tasksel/tests/lang
#!/bin/sh # Hide all language tasks, and select any that match the current LANG # setting for installation. if [ "$NEW_INSTALL" ]; then set -e shift 1 baselang=${LANG%%_*} fulllang=${LANG%%.*} for locale in $@; do if ( [ -n "$LANG" ] && [ "$LANG" = "$locale" ] ) || \ ( [ -n "$fulllang" ] && [ "$fulllang" = "$locale" ] ) || \ ( [ -n "$baselang" ] && [ "$baselang" = "$locale" ] ); then exit 0 # install without display fi done exit 1 # do not display else exit 1 fi