8 lines
183 B
Bash
8 lines
183 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
root=$(realpath $(dirname $0));
|
||
|
|
||
|
# 1/ copy the service file
|
||
|
mkdir -p /usr/lib/systemd/system/;
|
||
|
cp -r ./usr/lib/systemd/system/firewall@.service /usr/lib/systemd/system/;
|