Commit 8af70749 authored by Andreas Schmidt's avatar Andreas Schmidt
Browse files

Update PRRT for NSDI eval.

parent 7471bc39
Loading
Loading
Loading
Loading

salt/prrt/c.sls

0 → 100644
+9 −0
Original line number Diff line number Diff line
include:
    - prrt

prrt_make:
    cmd.run:
        - name: cmake .. && make
        - cwd: /opt/rna/prrt/build
        - require:
            - pip: pip_modules
Compare 1b531432 to 45325c31
Original line number Diff line number Diff line
Subproject commit 1b531432f86830ff9995b4566d650782330917d4
Subproject commit 45325c31c9a61ab006a3aab3a53021b2821caca5

salt/prrt/nsdi.sls

0 → 100644
+19 −0
Original line number Diff line number Diff line
include:
    - prrt.c

tcp_repo:
    file.recurse:
        - name: /opt/rna/tcp
        - source: salt://prrt/files/PRRT
        - user: rna
        - group: rna
        - clean: True
        - exclude_pat: tests*
        - file_mode: keep

tcp_make:
    cmd.run:
        - name: cmake -DTCP=1 .. && make
        - cwd: /opt/rna/tcp/build
        - require:
            - pip: pip_modules