service: rename Service.Remove to Service.Uninstall.

This commit is contained in:
Daniel Theophanes
2015-01-18 12:35:38 -08:00
parent 46a24fdb2f
commit 0de2108b82
4 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -224,7 +224,7 @@ func (s *linuxService) Install() error {
return nil
}
func (s *linuxService) Remove() error {
func (s *linuxService) Uninstall() error {
if flavor == initSystemd {
exec.Command("systemctl", "disable", s.Name+".service").Run()
}