aboutsummaryrefslogtreecommitdiffstats
path: root/systemd/fedora-configure
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2013-07-12 13:03:45 +0200
committerLukas Nykryn <lnykryn@redhat.com>2013-07-12 13:03:45 +0200
commit7cda43cae585d3a40e0a2d65992388623093e35f (patch)
treee1dcbaabd5c00b05784f8e34e5981415dafcbe16 /systemd/fedora-configure
parent4aa178674056dfc0930ad69dd77ec6490d9c5770 (diff)
downloadinitscripts-7cda43cae585d3a40e0a2d65992388623093e35f.tar
initscripts-7cda43cae585d3a40e0a2d65992388623093e35f.tar.gz
initscripts-7cda43cae585d3a40e0a2d65992388623093e35f.tar.bz2
initscripts-7cda43cae585d3a40e0a2d65992388623093e35f.tar.xz
initscripts-7cda43cae585d3a40e0a2d65992388623093e35f.zip
rename fedora-* to rhel-*
Diffstat (limited to 'systemd/fedora-configure')
-rwxr-xr-xsystemd/fedora-configure20
1 files changed, 0 insertions, 20 deletions
diff --git a/systemd/fedora-configure b/systemd/fedora-configure
deleted file mode 100755
index 64f535f6..00000000
--- a/systemd/fedora-configure
+++ /dev/null
@@ -1,20 +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 [ -r /etc/hostname ]; then
- HOSTNAME=$(cat /etc/hostname)
- # Reset the hostname.
- action $"Resetting hostname ${HOSTNAME}: " hostname ${HOSTNAME}
-fi