mirror of
https://github.com/vvzvlad/vestasync.git
synced 2024-11-05 06:49:11 +03:00
move files
This commit is contained in:
parent
e35f42aa4e
commit
a1d7623c10
10
vestasync.py
10
vestasync.py
@ -100,20 +100,20 @@ def init_repo(c):
|
||||
|
||||
def create_automac_systemd(c):
|
||||
apply_macs_script_path = "/usr/local/bin/apply_macs.sh"
|
||||
c.put("apply_macs.sh", apply_macs_script_path)
|
||||
c.put("./files/apply_macs.sh", apply_macs_script_path)
|
||||
c.run(f"chmod +x {apply_macs_script_path}")
|
||||
|
||||
c.put("apply_macs.service", "/etc/systemd/system/apply_macs.service")
|
||||
c.put("./files/apply_macs.service", "/etc/systemd/system/apply_macs.service")
|
||||
c.run("systemctl daemon-reload")
|
||||
c.run("systemctl enable apply_macs.service")
|
||||
|
||||
def create_autogit_systemd(c):
|
||||
pushgit_script_path = "/mnt/data/etc/pushgit.sh"
|
||||
c.put("pushgit.sh", pushgit_script_path)
|
||||
c.put("./files/pushgit.sh", pushgit_script_path)
|
||||
c.run(f"chmod +x {pushgit_script_path}")
|
||||
|
||||
c.put("pushgit.service", "/etc/systemd/system/pushgit.service")
|
||||
c.put("pushgit.timer", "/etc/systemd/system/pushgit.timer")
|
||||
c.put("./files/pushgit.service", "/etc/systemd/system/pushgit.service")
|
||||
c.put("./files/pushgit.timer", "/etc/systemd/system/pushgit.timer")
|
||||
|
||||
c.run("systemctl daemon-reload")
|
||||
c.run("systemctl enable pushgit.timer")
|
||||
|
Loading…
Reference in New Issue
Block a user