env.go 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. // Copyright 2015 CoreOS, Inc.
  2. //
  3. // Licensed under the Apache License, Version 2.0 (the "License");
  4. // you may not use this file except in compliance with the License.
  5. // You may obtain a copy of the License at
  6. //
  7. // http://www.apache.org/licenses/LICENSE-2.0
  8. //
  9. // Unless required by applicable law or agreed to in writing, software
  10. // distributed under the License is distributed on an "AS IS" BASIS,
  11. // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. // See the License for the specific language governing permissions and
  13. // limitations under the License.
  14. package system
  15. import (
  16. "fmt"
  17. "reflect"
  18. "github.com/rancher/os/config/cloudinit/config"
  19. )
  20. // serviceContents generates the contents for a drop-in unit given the config.
  21. // The argument must be a struct from the 'config' package.
  22. func serviceContents(e interface{}) string {
  23. vars := getEnvVars(e)
  24. if len(vars) == 0 {
  25. return ""
  26. }
  27. out := "[Service]\n"
  28. for _, v := range vars {
  29. out += fmt.Sprintf("Environment=\"%s\"\n", v)
  30. }
  31. return out
  32. }
  33. func getEnvVars(e interface{}) []string {
  34. et := reflect.TypeOf(e)
  35. ev := reflect.ValueOf(e)
  36. vars := []string{}
  37. for i := 0; i < et.NumField(); i++ {
  38. if val := ev.Field(i).Interface(); !config.IsZero(val) {
  39. key := et.Field(i).Tag.Get("env")
  40. vars = append(vars, fmt.Sprintf("%s=%v", key, val))
  41. }
  42. }
  43. return vars
  44. }