mirror of
https://github.com/vvzvlad/vestasync.git
synced 2024-12-26 20:21:00 +03:00
remove rm
This commit is contained in:
parent
3ac8eb779e
commit
db86b488fb
11
vestasync.py
11
vestasync.py
@ -102,9 +102,7 @@ def init_repo(c):
|
|||||||
|
|
||||||
|
|
||||||
def copy_wb_rule(c):
|
def copy_wb_rule(c):
|
||||||
wb_rule_path = "/mnt/data/etc/wb-rules/vestasync.js"
|
c.put("./files/vestasync.js", "/mnt/data/etc/wb-rules/vestasync.js")
|
||||||
c.run(f"rm {wb_rule_path} || true")
|
|
||||||
c.put("./files/vestasync.js", wb_rule_path)
|
|
||||||
|
|
||||||
def create_automac_systemd(c):
|
def create_automac_systemd(c):
|
||||||
#disable
|
#disable
|
||||||
@ -118,9 +116,7 @@ def create_automac_systemd(c):
|
|||||||
}
|
}
|
||||||
|
|
||||||
for local_path, remote_path in file_paths.items():
|
for local_path, remote_path in file_paths.items():
|
||||||
c.run(f"rm {remote_path} || true")
|
|
||||||
c.put(local_path, remote_path)
|
c.put(local_path, remote_path)
|
||||||
c.run(f"chmod +x {remote_path}")
|
|
||||||
|
|
||||||
#reload
|
#reload
|
||||||
c.run("systemctl daemon-reload")
|
c.run("systemctl daemon-reload")
|
||||||
@ -157,9 +153,7 @@ def create_autogit_systemd(c):
|
|||||||
}
|
}
|
||||||
|
|
||||||
for local_path, remote_path in file_paths.items():
|
for local_path, remote_path in file_paths.items():
|
||||||
c.run(f"rm {remote_path} || true")
|
|
||||||
c.put(local_path, remote_path)
|
c.put(local_path, remote_path)
|
||||||
c.run(f"chmod +x {remote_path}")
|
|
||||||
|
|
||||||
#reload
|
#reload
|
||||||
c.run("systemctl daemon-reload")
|
c.run("systemctl daemon-reload")
|
||||||
@ -232,8 +226,7 @@ def ppush_the_repo(c):
|
|||||||
def run_user_cmd(c, file):
|
def run_user_cmd(c, file):
|
||||||
user_cmd_file = "/tmp/user_cmd.sh"
|
user_cmd_file = "/tmp/user_cmd.sh"
|
||||||
c.put(file, user_cmd_file)
|
c.put(file, user_cmd_file)
|
||||||
c.run(f"chmod +x {user_cmd_file}")
|
c.run(f"bash {user_cmd_file}")
|
||||||
c.run(f"{user_cmd_file}")
|
|
||||||
c.run(f"rm {user_cmd_file}")
|
c.run(f"rm {user_cmd_file}")
|
||||||
|
|
||||||
def save_mac_in_cfg(c):
|
def save_mac_in_cfg(c):
|
||||||
|
Loading…
Reference in New Issue
Block a user