summaryrefslogtreecommitdiffstats
path: root/satellit_installer/includes/10-configurations.inc
diff options
context:
space:
mode:
authorChristian Rößler2015-11-17 17:05:56 +0100
committerChristian Rößler2015-11-17 17:05:56 +0100
commit7e76df9468a475ea47f7a494b1ec817178cd1fa0 (patch)
treebbaba7070e02efb4084d8f72ab48ffb72ee80103 /satellit_installer/includes/10-configurations.inc
parent[SSPS] Base atftpd systemd service file (ExecStart etc. should be edited furt... (diff)
downloadsetup-scripts-7e76df9468a475ea47f7a494b1ec817178cd1fa0.tar.gz
setup-scripts-7e76df9468a475ea47f7a494b1ec817178cd1fa0.tar.xz
setup-scripts-7e76df9468a475ea47f7a494b1ec817178cd1fa0.zip
[SSPS] Password change enforced and repeated (firstrun), some cosmetics etc.
Diffstat (limited to 'satellit_installer/includes/10-configurations.inc')
-rw-r--r--satellit_installer/includes/10-configurations.inc22
1 files changed, 14 insertions, 8 deletions
diff --git a/satellit_installer/includes/10-configurations.inc b/satellit_installer/includes/10-configurations.inc
index f722947..64df575 100644
--- a/satellit_installer/includes/10-configurations.inc
+++ b/satellit_installer/includes/10-configurations.inc
@@ -1,14 +1,14 @@
patch_atftpd_config() {
- echo -n "# Stopping atftpd server in case it's not managed by inetd..."
+ echo -n "# Stopping atftpd server in case it's not managed by inetd... "
[ "$SYSTEMD" ] && systemctl stop atftpd || /etc/init.d/atftpd stop 2>/dev/null 1>&2
echo "ok."
# No sense in patching, we will drop this little entry.
- echo -n "# Patching atftpd configuration..."
+ echo -n "# Patching atftpd configuration... "
echo "USE_INETD=false" > /etc/default/atftpd
echo 'OPTIONS="--retry-timeout 1 --maxthread 100 --verbose=5 --no-multicast --bind-address 0.0.0.0 /srv/openslx/tftp"' >> /etc/default/atftpd
echo "ok."
# sometimes a tftp stating line remains in /etc/inetd.conf. Let's have a look and kill this interesting line:
- echo -n "# Checking /etc/inetd.conf for a tftp entry..."
+ echo -n "# Checking /etc/inetd.conf for a tftp entry... "
if [ $(grep -c "^tftp.*dgram.*udp4" /etc/inetd.conf) -gt 0 ]; then
echo -n " found. Deleting... "
sed -i '/^tftp.*dgram.*udp4/d' /etc/inetd.conf
@@ -18,19 +18,24 @@ patch_atftpd_config() {
fi
}
+copy_atftpd_service() {
+ echo -n "# Copying atftpd service file... "
+ cp -p "$BASEDIR/static_files/atftpd.service" /etc/systemd/system && echo "ok." || perror "failed."
+}
+
patch_lighttpd_config() {
service lighttpd stop
echo -n "# Patching lighttpd configuration..."
- cp -p "$BASEDIR/static_files/lighttpd.conf" /etc/lighttpd/lighttpd.conf || perror "failed"
- cp -p "$BASEDIR/static_files/lighttpd-auto-ssl.sh" /usr/share/lighttpd/auto-ssl.sh || perror "failed"
+ cp -p "$BASEDIR/static_files/lighttpd.conf" /etc/lighttpd/lighttpd.conf || perror "failed."
+ cp -p "$BASEDIR/static_files/lighttpd-auto-ssl.sh" /usr/share/lighttpd/auto-ssl.sh || perror "failed."
chmod +x /usr/share/lighttpd/auto-ssl.sh || perror "failed"
echo "ok."
- cd /etc/lighttpd/conf-enabled || perror "Could not cd to conf-enabled"
+ cd /etc/lighttpd/conf-enabled || perror "Could not cd to conf-enabled."
[ ! -h 10-fastcgi.conf ] && ln -s ../conf-available/10-fastcgi.conf
[ ! -h 15-fastcgi-php.conf ] && ln -s ../conf-available/15-fastcgi-php.conf
# Increase php threads
sed -i 's/"PHP_FCGI_CHILDREN.*$/"PHP_FCGI_CHILDREN" => "32",/' "15-fastcgi-php.conf"
- mkdir -p "$1" || perror "Could not create $1"
+ mkdir -p "$1" || perror "Could not create $1."
}
config_nfs() {
@@ -47,6 +52,7 @@ config_nfs() {
}
write_apt_config() {
- cp "$BASEDIR/static_files/system/apt-upgrade-conf" "/etc/apt/apt.conf.d/02periodic"
+ echo -n "# Configuring apt unattended/periodic updates... "
+ cp "$BASEDIR/static_files/system/apt-upgrade-conf" "/etc/apt/apt.conf.d/02periodic" && echo " done." || pwarning "failed."
}