You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
339 B
13 lines
339 B
#1/bin/bash
|
|
|
|
# todo: actually install podman
|
|
|
|
# copy bin files to /usr/local/bin
|
|
rsync -vaSH bin/ /usr/local/bin/
|
|
|
|
# copy shflags to /usr/local/bin as well
|
|
rsync -vaSH lib/shflags /usr/local/bin/
|
|
|
|
# install systemd startup service
|
|
rsync -vaSH lib/containers-startup.service /etc/systemd/system/
|
|
systemctl enable containers-startup.service
|
|
|