1
0
mirror of https://github.com/rancher/os.git synced 2025-08-01 23:17:50 +00:00

Merge pull request #876 from rancher/revert-870-check-validity-of-service-name

Revert "Check the validity of the service name"
This commit is contained in:
Darren Shepherd 2016-04-12 10:02:08 -07:00
commit 0c4057346a

View File

@ -95,7 +95,7 @@ func disable(c *cli.Context) {
for _, service := range c.Args() {
if _, ok := cfg.Rancher.ServicesInclude[service]; !ok {
logrus.Fatalf("ERROR: Service %s is not a valid service, use \"sudo ros service list\" to list the services", service)
continue
}
cfg.Rancher.ServicesInclude[service] = false
@ -118,7 +118,7 @@ func del(c *cli.Context) {
for _, service := range c.Args() {
if _, ok := cfg.Rancher.ServicesInclude[service]; !ok {
logrus.Fatalf("ERROR: Service %s is not a valid service, use \"sudo ros service list\" to list the services", service)
continue
}
delete(cfg.Rancher.ServicesInclude, service)
changed = true
@ -137,11 +137,6 @@ func enable(c *cli.Context) {
logrus.Fatal(err)
}
services, err := util.GetServices(cfg.Rancher.Repositories.ToArray())
if err != nil {
logrus.Fatalf("Failed to get services: %v", err)
}
var enabledServices []string
for _, service := range c.Args() {
@ -150,10 +145,6 @@ func enable(c *cli.Context) {
logrus.Fatalf("ERROR: Service should be in path /var/lib/rancher/conf")
}
if !util.Contains(services, service) {
logrus.Fatalf("ERROR: Service %s is not a valid service, use \"sudo ros service list\" to list the services", service)
}
cfg.Rancher.ServicesInclude[service] = true
enabledServices = append(enabledServices, service)
}