Skip to content

Commit

Permalink
Moved ubuntu resources into the package, fixing the build.
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Apr 1, 2024
1 parent cf289d8 commit 5a7ba51
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fabfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ def install_service(c):
_install_service_recapturedocs(c)
files.upload_template(
c,
f"ubuntu/{project}.service",
f"recapturedocs/ubuntu/{project}.service",
"/etc/systemd/system",
context=globals(),
)
Expand Down Expand Up @@ -109,7 +109,7 @@ def remove_all(c):
@task(hosts=hosts)
def configure_nginx(c):
c.sudo('apt install -y nginx')
source = "ubuntu/nginx config"
source = "recapturedocs/ubuntu/nginx config"
target = f"/etc/nginx/sites-available/{site}"
files.upload_template(c, src=source, dest=target)
c.sudo(f'ln -sf ../sites-available/{site} /etc/nginx/sites-enabled/')
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 5a7ba51

Please sign in to comment.