aboutsummaryrefslogtreecommitdiffstats
path: root/systemd
diff options
context:
space:
mode:
authorLukas Nykryn <lnykryn@redhat.com>2014-04-07 10:45:09 +0200
committerLukas Nykryn <lnykryn@redhat.com>2014-04-07 10:45:09 +0200
commit12451218fbcb275ad23ef96ca60324810b53c474 (patch)
tree5b21862290bbbc61f1045648b1f37d3d382a9503 /systemd
parentb71c97248f6a845b681e5f8fd257eda44b1a8326 (diff)
downloadinitscripts-12451218fbcb275ad23ef96ca60324810b53c474.tar
initscripts-12451218fbcb275ad23ef96ca60324810b53c474.tar.gz
initscripts-12451218fbcb275ad23ef96ca60324810b53c474.tar.bz2
initscripts-12451218fbcb275ad23ef96ca60324810b53c474.tar.xz
initscripts-12451218fbcb275ad23ef96ca60324810b53c474.zip
remove fedora-configure
Diffstat (limited to 'systemd')
-rwxr-xr-xsystemd/fedora-configure20
-rw-r--r--systemd/system/fedora-configure.service15
2 files changed, 0 insertions, 35 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
diff --git a/systemd/system/fedora-configure.service b/systemd/system/fedora-configure.service
deleted file mode 100644
index 9564ae55..00000000
--- a/systemd/system/fedora-configure.service
+++ /dev/null
@@ -1,15 +0,0 @@
-[Unit]
-Description=Reconfigure the system on administrator request
-DefaultDependencies=no
-Conflicts=shutdown.target
-Before=multi-user.target shutdown.target
-After=local-fs.target
-ConditionPathExists=/.unconfigured
-
-[Service]
-ExecStart=/lib/systemd/fedora-configure
-ExecStopPost=/bin/rm -f /.unconfigured
-Type=oneshot
-TimeoutSec=0
-StandardInput=tty
-RemainAfterExit=yes