Displaying 4 results from an estimated 4 matches for "nsuccessful".
Did you mean:
successful
2010 Mar 23
1
[PATCH] Ensures that persist and unpersist work with relative paths.
...ull ; then
- printf "$f\n" >> /config/files
+ if ! grep -q "^${filename}$" /config/files 2> /dev/null ; then
+ printf "${filename}\n" >> /config/files
fi
- printf "\nSuccessfully persisted $f\n"
+ printf "\nSuccessfully persisted ${filename}\n"
fi
done
echo
@@ -563,41 +562,40 @@ remove_config() {
if grep -q " /config ext3" /proc/mounts; then
for p in "$@"; do
- grep...
2010 May 25
0
bandwidth issue between a windows 2008 server standard and ubuntu 8.04 samba
...word:* %n\n *password\supdated\ssuccessfully* .
# This boolean controls whether PAM will be used for password changes
# when requested by an SMB client instead of the program listed in
# 'passwd program'. The default is 'no'.
pam password change = yes
# This option controls how nsuccessful authentication attempts are mapped
# to anonymous connections
map to guest = bad user
########## Domains ###########
# Is this machine able to authenticate users. Both PDC and BDC
# must have this setting enabled. If you are the BDC you must
# change the 'domain master' setting to no
#
;...
2010 Oct 22
0
[PATCH node] First draft of replacing some of the ovirt-config-* scripts with python equivalents.
...les used by rc.sysinit
+ ret = os.system("grep -q \"^$%s$\" /config/files 2> /dev/null") % filename
+ if ret > 0:
+ os.system("echo \"%s\n\" >> /config/files") % filename
+ log("\nSuccessfully persisted ${filename}\n")
+ else:
+ log("WARNING: persistent config storage not available\n")
+ rc=2
+ return rc
+
+def is_persisted(filename):
+ abspath = os.path.abspath(filename)
+ if os.path.exists("/config" + abspath):
+ return True
+...
2009 Jun 05
2
I am so frustrated - Samba ports not opening and no error message
...# passdb is changed.
unix password sync = no
# This boolean controls whether PAM will be used for password changes
# when requested by an SMB client instead of the program listed in
# 'passwd program'. The default is 'no'.
pam password change = yes
# This option controls how nsuccessful authentication attempts are mapped
# to anonymous connections
map to guest = bad user
########## Domains ###########
# Is this machine able to authenticate users. Both PDC and BDC
# must have this setting enabled. If you are the BDC you must
# change the 'domain master' setting to no...