0
0
mirror of https://github.com/termux/termux-packages.git synced 2025-01-21 03:45:35 +00:00
Twaik Yont 151a3ebdb6 chore(main): force disable auto updates [no ci]
This is needed to avoid auto-updater script warnings.
2023-10-01 20:02:58 +03:00

18 lines
528 B
Bash

TERMUX_PKG_HOMEPAGE=https://man7.org/linux/man-pages/man5/resolv.conf.5.html
TERMUX_PKG_DESCRIPTION="Resolver configuration file"
TERMUX_PKG_LICENSE="Public Domain"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.3
TERMUX_PKG_AUTO_UPDATE=false
TERMUX_PKG_SKIP_SRC_EXTRACT=true
TERMUX_PKG_CONFFILES="
etc/hosts
etc/resolv.conf
"
termux_step_make_install() {
printf "127.0.0.1 localhost\n::1 ip6-localhost\n" > $TERMUX_PREFIX/etc/hosts
printf "nameserver 8.8.8.8\nnameserver 8.8.4.4\n" > $TERMUX_PREFIX/etc/resolv.conf
}