소스 검색

fix(build): fixed ldap config file sample issue and build script

Torkel Ödegaard 10 년 전
부모
커밋
d63a77d8b1
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      build.go

+ 1 - 1
build.go

@@ -210,7 +210,7 @@ func createPackage(options linuxPackageOptions) {
 	// copy sample ini file to /etc/grafana
 	runPrint("cp", "conf/sample.ini", filepath.Join(packageRoot, options.configFilePath))
 	// copy sample ldap toml config file to /etc/grafana/ldap.toml
-	runPrint("cp", "conf/sample.ini", filepath.Join(packageRoot, options.ldapFilePath))
+	runPrint("cp", "conf/ldap.toml", filepath.Join(packageRoot, options.ldapFilePath))
 
 	args := []string{
 		"-s", "dir",