aboutsummaryrefslogtreecommitdiffstats
path: root/systemd/fedora-configure
diff options
context:
space:
mode:
Diffstat (limited to 'systemd/fedora-configure')
-rwxr-xr-xsystemd/fedora-configure22
1 files changed, 0 insertions, 22 deletions
diff --git a/systemd/fedora-configure b/systemd/fedora-configure
deleted file mode 100755
index 43f17ca3..00000000
--- a/systemd/fedora-configure
+++ /dev/null
@@ -1,22 +0,0 @@
-#!/bin/bash
-#
-# Configure machine if necessary.
-
-. /etc/init.d/functions
-
-if [ -x /bin/plymouth ]; then
- /bin/plymouth quit
-fi
-
-if [ -x /usr/sbin/firstboot ]; then
- /usr/sbin/firstboot
-fi
-
-# Reread in network configuration data.
-if [ -f /etc/sysconfig/network ]; then
- . /etc/sysconfig/network
- [ -r /etc/hostname ] && HOSTNAME=$(cat /etc/hostname)
-
- # Reset the hostname.
- action $"Resetting hostname ${HOSTNAME}: " hostname ${HOSTNAME}
-fi