func executeReloadCmd() {
	log.Println(ansicolor.Red("Executing Reload Cmd"))
	go sync.Execute(*reloadCmd)
	status.LastReload = time.Now()
}
func executeSyncCmd() {
	go sync.Execute(*syncCmd)
	status.LastSync = time.Now()
}