You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
linuxPackageMappings <++= (normalizedName in Universal, mappings in Universal, defaultLinuxInstallLocation, daemonUser in Linux, daemonGroup in Linux) map {
75
-
(pkg, mappings, installLocation, user, group) =>
74
+
linuxPackageMappings <++= (normalizedName in Universal, mappings in Universal, defaultLinuxInstallLocation) map {
75
+
(pkg, mappings, installLocation) =>
76
76
// TODO - More windows filters...
77
77
defisWindowsFile(f: (File, String)):Boolean=
78
78
f._2 endsWith ".bat"
79
79
80
-
mapGenericMappingsToLinux(mappings filterNot isWindowsFile, user, group) { name =>
80
+
mapGenericMappingsToLinux(mappings filterNot isWindowsFile, Users.Root, Users.Root) { name =>
81
81
installLocation +"/"+ pkg +"/"+ name
82
82
}
83
83
},
@@ -92,17 +92,17 @@ trait GenericPackageSettings
92
92
},
93
93
// Map configuration files
94
94
linuxPackageSymlinks <++= (normalizedName in Universal, mappings in Universal, defaultLinuxInstallLocation, defaultLinuxConfigLocation)
0 commit comments