120 lines
2.7 KiB
Bash
120 lines
2.7 KiB
Bash
#!/usr/bin/env zsh
|
|
# Copyright (c) 2016-2021 Ivan J. <parazyd@dyne.org>
|
|
# This file is part of libdevuansdk
|
|
#
|
|
# This source code is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This software is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this source code. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
## default system configurations
|
|
|
|
conf_print_debconf() {
|
|
fn conf_print_debconf
|
|
|
|
cat <<EOF
|
|
console-common console-data/keymap/policy select Select keymap from full list
|
|
console-common console-data/keymap/full select en-latin1-nodeadkeys
|
|
EOF
|
|
}
|
|
|
|
conf_print_fstab() {
|
|
fn conf_print_fstab
|
|
[[ -n "$livesdk_version" ]] && return
|
|
cat <<EOF
|
|
#<file system> <mount point> <type> <options> <dump> <pass>
|
|
EOF
|
|
}
|
|
|
|
conf_print_hostname() {
|
|
fn conf_print_hostname
|
|
req=(os)
|
|
ckreq || return 1
|
|
|
|
print "$os"
|
|
}
|
|
|
|
conf_print_hosts() {
|
|
fn conf_print_hosts
|
|
req=(os)
|
|
ckreq || return 1
|
|
|
|
cat <<EOF
|
|
127.0.0.1 localhost ${os}
|
|
::1 localhost
|
|
EOF
|
|
}
|
|
|
|
conf_print_netifaces() {
|
|
fn conf_print_netifaces
|
|
|
|
cat <<EOF
|
|
# interfaces(5) file used by ifup(8) and ifdown(8)
|
|
|
|
# Please note that this file is written to be used with dhcpcd
|
|
# For static IP, consult /etc/dhcpcd.conf and 'man dhcpcd.conf'
|
|
|
|
# Include files from /etc/network/interfaces.d:
|
|
# source-directory /etc/network/interfaces.d
|
|
|
|
auto lo
|
|
iface lo inet loopback
|
|
|
|
allow-hotplug eth0
|
|
iface eth0 inet dhcp
|
|
|
|
#auto eth1
|
|
#iface eth1 inet dhcp
|
|
|
|
# auto eth0
|
|
# iface eth0 inet static
|
|
# address 10.0.1.10
|
|
# netmask 255.255.255.0
|
|
|
|
# allow-hotplug wlan0
|
|
# iface wlan0 inet dhcp
|
|
# wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
|
|
|
|
# allow-hotplug wlan1
|
|
# iface wlan1 inet dhcp
|
|
# wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
|
|
EOF
|
|
}
|
|
|
|
conf_print_resolvconf() {
|
|
fn conf_print_resolvconf
|
|
|
|
cat <<EOF
|
|
nameserver 8.8.8.8
|
|
nameserver 8.8.4.4
|
|
EOF
|
|
}
|
|
|
|
conf_print_sourceslist() {
|
|
fn conf_print_sourceslist
|
|
req=(mirror release section)
|
|
ckreq || return 1
|
|
|
|
cat <<EOF
|
|
# Package repositories
|
|
deb ${mirror} ${release} ${section}
|
|
deb ${mirror} ${release}-updates ${section}
|
|
deb ${mirror} ${release}-security ${section}
|
|
#deb ${mirror} ${release}-backports ${section}
|
|
|
|
# Source repositories
|
|
#deb-src ${mirror} ${release} ${section}
|
|
#deb-src ${mirror} ${release}-updates ${section}
|
|
#deb-src ${mirror} ${release}-security ${section}
|
|
#deb-src ${mirror} ${release}-backports ${section}
|
|
EOF
|
|
}
|