105 |
w = anaconda.intf.waitWindow(_("Post Upgrade"), |
w = anaconda.intf.waitWindow(_("Post Upgrade"), |
106 |
_("Performing post-upgrade configuration")) |
_("Performing post-upgrade configuration")) |
107 |
log.info("Running post-upgrade action script") |
log.info("Running post-upgrade action script") |
108 |
script = Script( "#!/bin/sh\n/sbin/rsyslogd ; sleep 2; /sbin/e-smith/signal-event post-upgrade\n" ) |
script = Script( "#!/bin/sh\n/sbin/rsyslogd; sleep 2; /sbin/e-smith/signal-event post-upgrade; touch /forcequotacheck\n" ) |
109 |
else: |
else: |
110 |
w = anaconda.intf.waitWindow(_("Post Installation"), |
w = anaconda.intf.waitWindow(_("Post Installation"), |
111 |
_("Performing post-installation configuration")) |
_("Performing post-installation configuration")) |
112 |
log.info("Running post-install action script") |
log.info("Running post-install action script") |
113 |
script = Script( "#!/bin/sh\n/sbin/rsyslogd ; sleep 2; /sbin/e-smith/signal-event post-install\n" ) |
script = Script( "#!/bin/sh\n/sbin/rsyslogd; sleep 2; /sbin/e-smith/signal-event post-install; touch /forcequotacheck\n" ) |
114 |
|
|
115 |
script.run(anaconda.rootPath, flags.serial, anaconda.intf) |
script.run(anaconda.rootPath, flags.serial, anaconda.intf) |
116 |
if anaconda.intf is not None: |
if anaconda.intf is not None: |