Skip to content

Commit

Permalink
Merge pull request #91 from aschnell/master
Browse files Browse the repository at this point in the history
- fixed typo
  • Loading branch information
aschnell committed Jul 14, 2014
2 parents e7e8b08 + bd457b4 commit 3a02ff4
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/modules/FileSystems.rb
Expand Up @@ -461,10 +461,11 @@ def SuggestMPoints
deep_copy(@suggest_m_points)
end

def SuggesTmpfsMPoints

def SuggestTmpfsMPoints
if Builtins.size(@suggest_tmp_points) == 0
@suggest_tmp_points = ["/run", "/var/run", "/tmp", "/var/lock"]
Builtins.y2milestone("SuggesTmpfsMPoints init:%1", @suggest_tmp_points)
Builtins.y2milestone("SuggestTmpfsMPoints init:%1", @suggest_tmp_points)
end
deep_copy(@suggest_tmp_points)
end
Expand Down Expand Up @@ -1296,7 +1297,7 @@ def GetNormalFilesystems
},
:tmpfs => {
:name => "TmpFS",
:mountpoints => SuggesTmpfsMPoints(),
:mountpoints => SuggestTmpfsMPoints(),
:mount_string => "tmpfs",
:mount_option => "-t tmpfs",
:fst_options => @tmpfs_fst_options
Expand Down Expand Up @@ -2016,7 +2017,7 @@ def AddQuotaOpts(part, fst_opts)
publish :variable => :default_subvol, :type => "string"
publish :variable => :nchars, :type => "string"
publish :function => :SuggestMPoints, :type => "list <string> ()"
publish :function => :SuggesTmpfsMPoints, :type => "list <string> ()"
publish :function => :SuggestTmpfsMPoints, :type => "list <string> ()"
publish :function => :GetGeneralFstabOptions, :type => "list <map <symbol, any>> ()"
publish :function => :GetJournalFstabOptions, :type => "list <map <symbol, any>> ()"
publish :function => :GetAclFstabOptions, :type => "list <map <symbol, any>> ()"
Expand Down

0 comments on commit 3a02ff4

Please sign in to comment.