Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 627460 Details for
Bug 866509
Use absolute paths when executing subprocesses from authconfig
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
[patch]
Patch to fix the problem
use-absolute-path.patch (text/plain), 2.09 KB, created by
Stef Walter
on 2012-10-15 14:24:40 UTC
(
hide
)
Description:
Patch to fix the problem
Filename:
MIME Type:
Creator:
Stef Walter
Created:
2012-10-15 14:24:40 UTC
Size:
2.09 KB
patch
obsolete
>diff -r 07efea0f862a authinfo.py >--- a/authinfo.py Tue Sep 25 21:46:43 2012 +0200 >+++ b/authinfo.py Mon Oct 15 10:23:57 2012 -0400 >@@ -848,7 +848,7 @@ > if not nostart: > os.system("/bin/domainname " + nisDomain) > try: >- os.system("[[ $(getsebool allow_ypbind) == *off* ]] && setsebool -P allow_ypbind 1") >+ os.system("[[ $(/usr/sbin/getsebool allow_ypbind) == *off* ]] && /usr/sbin/setsebool -P allow_ypbind 1") > os.stat(PATH_RPCBIND) > Service.enable("rpcbind") > if not nostart: >@@ -870,7 +870,7 @@ > if not nostart: > os.system("/bin/domainname \"(none)\"") > try: >- os.system("[[ $(getsebool allow_ypbind) == *on* ]] && setsebool -P allow_ypbind 0") >+ os.system("[[ $(/usr/sbin/getsebool allow_ypbind) == *on* ]] && /usr/sbin/setsebool -P allow_ypbind 0") > os.stat(PATH_YPBIND) > if not nostart: > try: >@@ -885,12 +885,12 @@ > def toggleLDAPService(enableLDAP): > if enableLDAP: > try: >- os.system("[[ $(getsebool authlogin_nsswitch_use_ldap) == *off* ]] && setsebool -P authlogin_nsswitch_use_ldap 1") >+ os.system("[[ $(/usr/sbin/getsebool authlogin_nsswitch_use_ldap) == *off* ]] && /usr/sbin/setsebool -P authlogin_nsswitch_use_ldap 1") > except OSError: > pass > else: > try: >- os.system("[[ $(getsebool authlogin_nsswitch_use_ldap) == *on* ]] && setsebool -P authlogin_nsswitch_use_ldap 0") >+ os.system("[[ $(/usr/sbin/getsebool authlogin_nsswitch_use_ldap) == *on* ]] && /usr/sbin/setsebool -P authlogin_nsswitch_use_ldap 0") > except OSError: > pass > return True >@@ -1163,7 +1163,7 @@ > rv = self.safeCopy(backuppath, self.origPath) > > try: >- os.system("restorecon '"+self.origPath+"'") >+ os.system("/usr/sbin/restorecon '"+self.origPath+"'") > except (IOError, OSError): > pass > >@@ -3282,7 +3282,7 @@ > callPKCS11Setup(["use_module="+self.smartcardModule, > "ins_action="+insact, "rm_action="+rmact]) > >- os.system("gconftool-2 --direct" + >+ os.system("/usr/bin/gconftool-2 --direct" + > " --config-source=xml:readwrite:/etc/gconf/gconf.xml.mandatory" + > " -s /desktop/gnome/peripherals/smartcard/removal_action %s --type string" % lock) > return True
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 866509
: 627460