/etc/ara.config is in ara 1.0.33.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | (* System-wide default configuration file for Ara *)
ara {
database {
paths: [("/var/lib/dpkg/", "^available$");
("/var/lib/apt/lists/", "_Packages$");
("/var/lib/apt/lists/", "_Sources$");
("/var/lib/dpkg/", "^status$")]
}
commands {
pager: "/etc/alternatives/pager"
run_interactive_command: "/usr/bin/sudo ${COMMAND}"
install: "/usr/bin/apt-get install ${PACKAGE}=${VERSION}"
remove: "/usr/bin/apt-get remove ${PACKAGE}=${VERSION}"
update: "/usr/bin/apt-get update"
upgrade: "/usr/bin/apt-get upgrade"
dist_upgrade: "/usr/bin/apt-get dist-upgrade"
print: "/usr/bin/a2ps -q"
}
}
|