blob: 114632c46204d6895f5d8abcfe0ce9a4ddf6e40c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
This directory contains everything to build a simple deb package.
To build, run the following command:
./build.sh
To install the build deb package run the following commands replacing the package.deb with the correct name of the deb file.
cp package.deb /tmp
cd /tmp
apt install ./package.deb
The above "apt install" will download dependencies if needed. Otherwise, dpkg command can just be used to install or upgrade the package:
dpkg -i package.deb
After installing the package, update the configuration file /etc/fs-hello-kamal.conf .
To run the command found in this package after installing the deb file:
fs-hello-kamal Debian is good
|